-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (91 loc) · 1.96 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
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
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" type="image/x-icon" href="img/micronoft.png">
<title>Micronoft</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
margin: 0;
padding: 0;
font-family: 'Tahoma', sans-serif;
}
.navbar {
overflow: hidden;
background-color: #0182e8;
position: fixed;
top: 0;
width: 100%;
left: 0;
box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.3);
}
.navbar a {
float: left;
display: block;
color: #ffff;
text-align: center;
text-decoration: none;
padding: 14px 16px;
font-size: 17px;
}
.navbar a:hover {
background-color: #ffff;
color: black;
}
.login-button {
float: right;
display: flex;
align-items: center;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: white;
color: #808080;
text-align: center;
padding: 10px;
font-size: 12px;
}
.footer-content {
margin-top: 10px;
}
.main-content {
margin-top: 60px;
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
img {
max-width: 100%;
max-height: 100%;
display: block;
margin: auto;
}
</style>
</head>
<body>
<div class="navbar">
<a>☰</a>
<a href="https://login.micronoft.com">Micronoft Basure</a>
<div class="login-button">
<a href="https://login.micronoft.com">Login</a>
</div>
</div>
<div class="main-content">
<a href="https://www.youtube.com/watch?v=b1k8RdF5u2g" target="_blank">
<img src="img/micronoft.png" alt="micronoft">
</a>
</div>
<footer>
<div class="footer-content">
<p>© 2023 Micronoft. Some rights reserved.</p>
</div>
</footer>
</body>
</html>