-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (25 loc) · 1014 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 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">
<title>Home Page</title>
<link rel="stylesheet" href="/github101/style.css">
</head>
<body class="navigation-box">
<div class="navigation">
<img src="/github101/logo.png" height="50">
<a href="/github101/">Home</a>
<a href="/github101/pages/">Another Page</a>
</div>
<h1>This is my website</h1>
<p>I hope you enjoy</p>
<a href="/github101/pages/index.html">This is a secondary page on my website!</a>
<!-- This is a comment in HTML -->
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Hic odit, sint odio eum aspernatur deleniti unde ex veniam, quis rerum autem consequuntur placeat voluptas doloremque beatae ratione cupiditate iste laboriosam.</p>
<img src="logo.png" width="256">
<h2>More Content</h2>
<p>Here is more content on my home page!</p>
</body>
</html>