-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (41 loc) · 1.41 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
<!-- Template by github.com/ThatOnePers0n -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Name Nameson | Links</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="" />
<link rel="stylesheet" type="text/css" href="styles.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="icon" href="img/favicon.png">
</head>
<body>
<div id="loader-wrapper">
<div class="loader"></div>
</div>
<div class="container animate__animated animate__zoomInUp">
<img alt="pfp" class="pfp" src="img/pfp.png">
<h1 class="poppins-regular">Name Nameson</h1>
<p class="poppins-light">bio here...</p>
<button class="animate__animated animate__fadeInUp"><a>Link #1</a></button>
<button class="animate__animated animate__fadeInUp"><a>Link #2</a></button>
<footer>
<p class="poppins-light">
<script>
document.write(' © ' + new Date().getFullYear() + ' Name Nameson');
</script>
<br>
Template by <a href="https://github.com/ThatOnePers0n">ThatOnePers0n</a>
</p>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.7.1
.min.js" crossorigin="anonymous"></script>
<script type="text/javascript">
$(window).on('load', function() {
$("#loader-wrapper").fadeOut(700);
});
</script>
</body>
</html>