-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
29 lines (29 loc) · 893 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Define your CSS file here so you can style your HTML -->
<link rel="stylesheet" href="index.css" />
<title>Home</title>
</head>
<body>
<div class="container">
<ul class="nav">
<li>
<a class="navlink" href="/">Home</a>
</li>
<li>
<a class="navlink" href="page1.html">Page 1</a>
</li>
<li>
<a class="navlink" href="page2.html"> Page 2</a>
</li>
</ul>
<h1 class="title">The most beginner-friendly website</h1>
<p class="pictureCaption">Here's a picture</p>
<img class="fullypic" src="/images/Fully.png" alt="fully picture" />
</div>
</body>
</html>