-
Notifications
You must be signed in to change notification settings - Fork 0
/
holygrail.html
42 lines (40 loc) · 1.58 KB
/
holygrail.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
<!DOCTYPE html>
<html lang = "en-US">
<head>
<meta charset = "UTF-8">
<meta name ="veiwport" content ="width=device-width", initial-scale=1>
<title>Nicholas Oblitey Commey | Holy Grail Layout Example</title>
<meta name = "author" content ="A common layout example on the web called the 'holy grail' layout">
</head>
<body>
<header>
<h1>A Holy Grail Layout Example</h1>
</header>
<nav>
<ul>
<li><a href ="https://www.linkedin.com/in/nicholas-commey/">My linkedin</a></li>
<li><a href = "https://web.facebook.com/profile.php?id=61550119016620">My Facebook</a></li>
</ul>
</nav>
<main>
<section>
<article>
<h2>Article 1</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium, porro.</p>
</article>
</section>
<section>
<article>
<h2>Article 2</h2>
<P>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Perferendis, sequi!</P>
</article>
</section>
</main>
<aside>
<a href = "https://content.churchofjesuschrist.org/templesldsorg/bc/Temples/photo-galleries/accra-ghana/800x450/accra-ghana-temple-detail-249022-2400x1200.jpg" alt = "Accra Ghana Temple" width = 200>Accra Ghana Temple</a>
</aside>
<footer>
<p> 🚀Nicholas Oblitey Commey🚀</p>>
</footer>
</body>
</html>