-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (53 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
Home
</title>
<style>
body{
background-image: url("bg.jpg");
background-repeat: no-repeat;
background-size: cover;
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Lucida Console", "Courier New", monospace;
}
header{
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 20px 100px;
background: none;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 99;
}
.navi a{
position: relative;
font-size: 1.1em;
color: #570fff;
text-decoration: none;
font-weight: 500;
margin-left: 40px;
}
</style>
</head>
<body>
<header>
<img class="logo" src="logo.png">
<nav class="navi">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Current Missing</a>
<a href="#">Contact</a>
</nav>
</header>
</body>
</html>