html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
<head>
<title>Floating Image</title>
</head>
<body>
<p><strong>Float the image to the right </strong></p>
<p><img src="IMG.jpg" alt="IMG" style="float:right;width:42px;height:42px;"> A paragraph with a floating image</p>
<p><strong>Float the image to the left</strong></p>
<p> <img src="IMG.jpg" alt="IMG" style="float:right;width:42px;height:42px;"> A paragraph with a floating image</p>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run