-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimages.html
More file actions
27 lines (20 loc) · 949 Bytes
/
Copy pathimages.html
File metadata and controls
27 lines (20 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<img src="pic_mountain.jpg" alt="Mountain View" style="width:304px;height:228px;">
<img src="wrongname.gif" alt="HTML5 Icon" style="width:128px;height:128px;">
<img src="html5.gif" alt="HTML5 Icon" style="width:128px;height:128px;">
<img src="html5.gif" alt="HTML5 Icon" width="128" height="128">
<img src="http://www.w3schools.com/images/w3schools_green.jpg" alt="W3Schools.com">
<img src="programming.gif" alt="Computer man" style="width:48px;height:48px;">
<img src="/images/html5.gif" alt="HTML5 Icon" style="width:128px;height:128px;">
<p><img src="smiley.gif" alt="Smiley face" style="float:right;width:42px;height:42px;">
The image will float to the right of the text.</p>
<p><img src="smiley.gif" alt="Smiley face" style="float:left;width:42px;height:42px;">
The image will float to the left of the text.</p>
</body>
</html>