forked from NoroffFEU/html-css-module1-lesson3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 840 Bytes
/
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
<!doctype html>
<html>
<head>
<title>My first website | Home</title>
<meta name="description" content="The home page to my first ever website.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<header>
<img src="logo.jpg" alt="Logo for My First Website">
<nav>
<ul>
<li>Home</li>
<li>About</li>
<li>Contact</li>
</ul>
</nav>
</header>
<main>
<section>
<h1>Hello world</h1>
<p>Welcome to my website. Here I'll be putting into practice all the things I've learned.</p>
</section>
</main>
<footer>
<p>If you need more info, you can <a href="https://twitter.com">find me on Twitter</a></p>
</footer>
</body>
</html>