-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 839 Bytes
/
index.html
File metadata and controls
39 lines (39 loc) · 839 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Munogu</title>
<style>
html,
body {
height: 100%;
margin: 0;
}
#content {
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
a {
color: #000;
}
</style>
</head>
<body>
<div id="content">
<img src="https://munogu.com/logo.png" width="100" height="100" alt="Munogu Logo">
<a href="mailto:hello@munogu.com">hello@munogu.com</a>
</div>
</body>
</html>