-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.02 KB
/
index.html
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
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/jpeg" href="https://www.publicdomainpictures.net/pictures/90000/velka/house-illustration-clipart.jpg">
<meta charset="utf-8">
<title>My First Page</title>
</head>
<body>
<main>
<p id="top">This is my main code</p>
<figure>
<img src="house.jpeg" alt="My house">
<figcaption>Default image</figcaption>
</figure>
<figure>
<img src="house.jpeg" alt="My house"
width="500px">
<figcaption>Image width adjusted</figcaption>
</figure>
<figure>
<img src="house.jpeg" alt="My house"
width="500px" height="600px">
<figcaption>Image width and height adjusted</figcaption>
</figure>
<figure>
<img src="house.jpeg" alt="My house"
width="50%">
<figcaption>Relative image width </figcaption>
</figure>
</main>
<footer>
<center>Think of an interesting footer
<br>
© This is my footer
<div align="right"><a href="#top"><img src="top.png" width="5%" alt="Go to top"></a></div>
</center>
</footer>
</body>
</html>