-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimages.html
More file actions
30 lines (22 loc) · 1.53 KB
/
images.html
File metadata and controls
30 lines (22 loc) · 1.53 KB
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
28
29
30
<html>
<body>
<img src ="https://cdn.pixabay.com/photo/2020/04/16/18/05/staircase-5051779_960_720.jpg" alt="alt provides a text description of the image which describes the image if you cannot see it." title="...you can also use the title attribute within the <img> element to provide additional information">
<br>
<img src="https://cdn.pixabay.com/photo/2020/04/16/18/05/staircase-5051779_960_720.jpg" alt="Sizing for heigh and width." width="600" height="450">
<br>
<img src="https://cdn.pixabay.com/photo/2020/04/16/18/05/staircase-5051779_960_720.jpg" alt="Alight hoziontally - left" align="left">
<br>
<img src="https://cdn.pixabay.com/photo/2020/04/16/18/05/staircase-5051779_960_720.jpg" alt="Alight hoziontally - right" align="right">
<br>
<img src="https://cdn.pixabay.com/photo/2020/04/16/18/05/staircase-5051779_960_720.jpg" alt="Alight vertically - top" align="top">
<img src="https://cdn.pixabay.com/photo/2020/04/16/18/05/staircase-5051779_960_720.jpg" alt="Alight vertically - middle" align="middle">
<img src="https://cdn.pixabay.com/photo/2020/04/16/18/05/staircase-5051779_960_720.jpg" alt="Alight vertically - bottom" align="bottom">
<br>
<figure>
<img src="https://cdn.pixabay.com/photo/2020/04/16/18/05/staircase-5051779_960_720.jpg" alt="Example image.">
<br>
<figcaption>Associated caption for example image.
</figcaption>
</figure>
</body>
</html>