-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
52 lines (48 loc) · 1.75 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
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="da">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<a href="#content" class="sr-hidden">Skip to content</a>
<header class="siteHeader">
<nav role="navigation">
<a href="./" class="siteBrand">Verdens Bedste Hjemmeside</a>
<ul class="primaryNavigation">
<li class="primaryNavigation__navigationItem"><a href="#!">Link 1</a></li>
<li class="primaryNavigation__navigationItem"><a href="#!">Link 2</a></li>
<li class="primaryNavigation__navigationItem"><a href="#!">Link 3</a></li>
</ul>
</nav>
</header>
<main role="main"></main>
<footer class="siteFooter" role="contentinfo">
<section class="siteFooter__section siteFooter__quote">
<blockquote>"Lorem ipsum dolor sit amet consectetur adipisicing elit. Provident optio
omnis aliquid. Quam laudantium quia voluptatem commodi quidem, provident amet
reprehenderit sit distinctio esse aperiam, libero fugiat aut blanditiis
explicabo."</blockquote>
</section>
<section class="siteFooter__section siteFooter__contact">
<address>
<p>Verdens bedste hjemmeside</p>
<p>Hjemmesidevej 42</p>
<p>4242 Hjemmesidestrup</p>
<p><a href="callto:004512345678">+45 12 345 678</a></p>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</address>
</section>
<section class="siteFooter__section siteFooter__some">
<ul>
<li><i class="icon-facebook-squared"></i></li>
<li><i class="icon-twitter-squared"></i></li>
<li><i class="icon-instagram"></i></li>
</ul>
</section>
</footer>
</body>
</html>