-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (67 loc) · 2.6 KB
/
index.html
File metadata and controls
80 lines (67 loc) · 2.6 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Main HTML Project</title>
</head>
<body>
<!--
Final HTML Project Requirements
- Use Semantic HTML **
- Create a blog about any topic, I've used tech **
- Include a header **
- Include a nav with links **
- A blog section with two articles each article having a h3 heading, again remembering to use semantic HTML **
- Include another section with a form featuring a username, email and submit button **
- A third section that is an image gallery with at least two images **
- And a footer with copyright **
-->
<header>
<h1>Final HTML Project</h1>
</header>
<nav>
<ul>
<a href=""><li>Home</li></a>
<a href=""><li>About</li></a>
<a href=""><li>Blog</li></a>
<a href=""><li>Contact</li></a>
</ul>
</nav>
<section>
<h2>The Blog</h2>
<article>
<h3>Today in Tech</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Vitae, ipsam quia amet aliquid ut repellendus totam numquam consequatur magnam incidunt <br>
ex in tenetur nesciunt reiciendis veniam culpa doloremque adipisci voluptatibus!
</p>
</article>
<article>
<h3>The Computer and You</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Vitae, ipsam quia amet aliquid ut repellendus totam numquam consequatur magnam incidunt <br>
ex in tenetur nesciunt reiciendis veniam culpa doloremque adipisci voluptatibus!
</p>
</article>
</section>
<section>
<h2>Form</h2>
<form action="#">
<label for="username">Username:</label>
<input type="text" placeholder="Username">
<label for="email">Email:</label>
<input type="email" placeholder="email@gmail.com">
<input type="submit" value="Submit">
</form>
</section>
<section>
<h2>Image Gallery</h2>
<img src="https://static.tumblr.com/e65f5b695415ee5224089dafbbfe079f/jkrzbiv/DBDo71wck/tumblr_static_tumblr_static_6ngjvx77v7ok8s8s40o0oc4gw_640.jpg" alt="An image of the mountains">
<br><br>
<img src="https://i.pinimg.com/736x/a2/aa/ce/a2aace4f099e8c27f1ef639d872b1f0f--camera-drawing-john-lennon.jpg" alt="Image of glasses">
</section>
<footer>
<p>© My Blog. All Rights Reserved.</p>
</footer>
</body>
</html>