-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (41 loc) · 1.93 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
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="index.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css" rel="stylesheet">
<title id="title"></title>
</head>
<body style="background-color:#fafafa;">
<div id="spinner" class="spinner-border" role="status"></div>
<div id="content" class="container col-xxl-10 px-4 py-5">
<div class="row g-5 py-5">
<div class="col-lg-4">
<div class="py-3">
<img id="avatar" class="img-fluid rounded" loading="lazy">
</div>
<h1 id="header"></h1>
<h4 id="subheader"></h4>
<p id="links"></p>
</div>
<div class="col-lg-8 py-5">
<div id="readme" class="lead"></div>
</div>
</div>
</div>
<style>
#spinner {
display: block;
position: fixed;
color: #999999;
width: 10rem;
height: 10rem;
right: calc(50% - 5rem);
top: calc(50% - 5rem);
}
</style>
</body>
</html>