-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (94 loc) · 2.74 KB
/
index.html
File metadata and controls
96 lines (94 loc) · 2.74 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=, initial-scale=1.0">
<title>Mergaite</title>
<style>
body{
background-color: #F8F8F8;
margin: 0;
padding: 0;
vertical-align: top;
box-sizing: border-box;
font-family:Verdana, Geneva, Tahoma, sans-serif ;
}
main{
display: inline-block;
width: 800px;
background-color: #F8F8F8;
margin-left: calc(50% - 400px);
}
header{
display: inline-block;
width: 100%;
}
header>img{
display:inline-block;
float: left;
margin-top: 30px;
width: 60px;
}
nav{
display:inline-block;
float: right;
}
a{
display:inline-block;
float: right;
text-decoration: none;
margin-top: 40px;
padding: 10px;
color: #9D9D9D;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.button{
display:inline-block;
float: right;
text-decoration: none;
margin-top: 40px;
padding: 3px;
padding-left: 15px;
padding-right: 15px;
color: #9D9D9D;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
section{
display: inline-block;
width: 100%;
margin: 20px;
}
div{ display: inline-block;
width: 45%;
float: left;
color: #9D9D9D;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
</style>
</head>
<body>
<main>
<header>
<img src="logo.png" alt="Logo">
<nav>
<a class="button"; style="text-transform: uppercase; border: 3px solid #9D9D9D; border-radius: 25px; " href="#">Sign in</a>
<a href="#">Community</a>
<a href="#">Library</a>
<a href="">Tracks</a>
<a href="#">Home</a>
</nav>
</header>
<section>
<div style="#";>
<h1 style="font-size: 60px; margin-bottom: 0;" >404</h1>
<p style="font-size: 30px;">The link is broken or the page has been removed.</p>
</div>
<img style="display:inline-block;
width:45%;
float: right;
margin-top: none;
" src="Mergaite.png" alt="Mergaite">
</section>
</main>
</body>
</html>