-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (38 loc) · 1.26 KB
/
index.html
File metadata and controls
52 lines (38 loc) · 1.26 KB
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RETOUR - Fixed Logic</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;650;700;800;900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div id="intro-container">
<header class="header-bar">
<img src="assets/images/fire.png" alt="Icon" class="top-icon">
<div class="top-menu" id="menu-btn">
<span class="bracket-left">[/</span>
<div class="inner-mask">
<span class="text-close">CLOSE</span>
</div>
<span class="bracket-right">]</span>
<div class="outer-mask">
<span class="text-menu">MENU</span>
</div>
</div>
</header>
<div class="text-wrapper">
<h1 class="retour-text">RETOUR :)</h1>
</div>
<nav class="fullscreen-nav">
<a href="pages/about.html" class="nav-item">ABOUT ME</a>
<a href="pages/projects.html" class="nav-item">PROJECTS</a>
<a href="pages/blog.html" class="nav-item">BLOG</a>
</nav>
<div class="black-curtain"></div>
</div>
<script src="assets/js/main.js"></script>
</body>
</html>