-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (55 loc) · 1.18 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
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>Kevins Website</title>
<style>
nav{
background-color:darkgrey;
height: 30px;
}
.nav{
padding: 3px;
position:relative;
top: 5px;
color:lightgrey;
}
.nav:hover{
padding: 3px;
position:relative;
top: 5px;
background-color:grey;
}
header
,body{
margin: 0px;
padding: 0px;
}
.content{
text-align:center;
}
</style>
</head>
<body style="">
<header>
<nav>
<a href="https://kevin051606.github.io/" class="nav">Home</a>
<a href="https://github.com/kevin051606" class="nav">My profile</a>
</nav>
</header>
<div class="content">
<h1>Hello Welcome To My Website</h1>
<br>
<h2>My Plans</h2>
<p>Honestly I got none <br>I just wanted a website.</p>
<h3>What to do if bored</h3>
<ol style="
position: absolute;
left: 44%;
text-align:justify;">
<li>Blink a few times.</li>
<li>Take a nap.</li>
<li>Stay bored.</li>
</ol>
</div>
</body>
</html>