-
Notifications
You must be signed in to change notification settings - Fork 0
/
Code-Review-Menu.html
47 lines (39 loc) · 1.48 KB
/
Code-Review-Menu.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
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>Code Review Menu Page</title>
<link rel="stylesheet" type="text/css" href="CSS/homestyle.css">
</head>
<body>
<header>
<span id="Header-Title">Pascal Tiberghien - Full Stack Web Developer</span>
<img id="logo" src="img/logo.png">
</header>
<nav><!-- Not sure why I would use list here instead of just having the <a> components alone but did it since the instructions said so. As a result had to use list-style-type: none; to retain structure of nav bar -->
<ul>
<!-- Here I give contact an id to give it a margin to the right-->
<li><a href="Contact.html" id="contact">Contact</a></li>
<li><a href="About-me.html">About me</a></li>
<li><a href="Blog.html">Blog</a></li>
<li><a href="Code-Review-Menu.html">Home</a></li>
</ul>
</nav>
<main>
<p class="maintext">This is my first website :D</p>
<div>
<img id="Phone" src="img/Phone.png">
<p class="small-text">Samsung Galaxy S11/S20 Plus video leaks showing phone in real life!</p>
</div>
<div>
<img class="bottom left" src="img/Debit_card_ATM.jpg">
<img class="bottom right" class="news" src="img/Taxify-Scooters.jpg">
<p class="bottom left small-text">Police are investigating three ATM explsions in two Florida counties</p>
<p class="bottom right small-text">E-scooter firm Bolt pulls out of 12 cities</p>
</div>
</main>
<footer>
<img id="bottom-logo" src="img/logo.png">
<p id="footer-text">Pascal Tiberghien - CodeFactory 2020</p>
</footer>
</body>
</html>