-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (40 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Payn's website</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--import normalize css-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<!--import the typewriter css-->
<link rel="stylesheet" href="https://unpkg.com/typer-js/dist/typer.min.css">
<!--import fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap" rel="stylesheet">
<!--link the main css-->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<nav class="nav-bar">
<a href="about.html">About</a>
<a href="mailto:[email protected]">Contact</a>
</nav>
</header>
<main>
<section id="home">
<img class="profile-img" src="https://avatars.githubusercontent.com/paynzin">
<div id="hello-console"></div>
</section>
<section id="socials">
<a href="https://github.com/Paynzin"><img src="assets/icons/github.svg"/></a>
<a href="https://gitlab.com/Paynzin"><img src="assets/icons/gitlab.svg"/></a>
<a href="https://mastodon.social/@Payn"><img src="assets/icons/mastodon.svg"/></a>
<a href="https://discord.gg/rTyrJkvm3n"><img src="assets/icons/discord.svg"/></a>
</section>
</main>
<script src="https://unpkg.com/typer-js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>