-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (47 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en" style="width: 100%; height: 100%;">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MikeyLab Homepage</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
</script>
<style>
/* reused from other projects */
* {
text-align: center;
}
.center {
position: relative;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
#main {
height: min-content;
z-index: 3;
overflow: hidden;
overflow-y: scroll;
}
</style>
</head>
<body style="width: 100%; height: 100%; background-color: #5f9ea0;">
<div class="center card w-50" id="main" style="max-height: 80%;">
<div id="card-header" class="card-header">
<b>MikeyLab Homepage</b>
</div>
<div id="card-body" class="card-body" style="height: min-content;">
<div>Welcome to my homepage!</div>
<br />
Most recent MikeyLab project: <a href="https://github.com/hieyou1/intertls">InterTLS</a>
<br />
<br />
<a href="https://github.com/hieyou1">GitHub</a>
<a href="mailto:[email protected]">Contact</a>
</div>
</div>
</body>
</html>