-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (36 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./assets/icon.webp" type="image/x-icon">
<link rel="apple-touch-icon" href="./assets/favicon.ico">
<!-- title -->
<title>Minimalist Portfolio</title>
<!-- meta tags -->
<meta name="description" content="A minimalist portfolio website, built with performance in mind.">
<meta name="keywords" content="portfolio, minimalist, web development, web design, projects, minimalism">
<meta name="author" content="mufasa159">
<meta name="robots" content="index, follow">
<meta name="og:image" content="./assets/image.webp">
<meta name="og:url" content="https://mufasa159.github.io/portfolio">
<link rel="stylesheet" href="./css/variables.css">
<link rel="stylesheet" href="./css/global.css">
<script type="text/javascript" src="./js/utils.js" defer></script>
<script type="text/javascript" src="./js/index.js" defer></script>
</head>
<body>
<div class="container" id="main">
<div>
<h1 class="title" id="greeting"></h1><br/>
<p class="title" id="intro-1"></p>
<p class="title" id="intro-2"></p>
</div>
<div class="button-container" id="portfolio-navigation"></div>
<div id="portfolio-container"></div>
</div>
<div id="modal"></div>
<!-- copyright -->
<footer><p>© 2021 - 2024 @mufasa159, All rights reserved.</p></footer>
</body>
</html>