-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (72 loc) · 2.49 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="stylesheets/main.css" />
<link rel="stylesheet" href="stylesheets/common.css" />
<link rel="stylesheet" href="stylesheets/menuBar.css" />
<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=Press+Start+2P&display=swap"
rel="stylesheet"
/>
<link rel="icon" href="media/favicons/favicon-32x32.png" />
<title>sertcoat.xyz</title>
</head>
<body>
<header class="prevent">
<!-- MENU ICON -->
<div id="menu-icon" onclick="toggleMobileMenu(this)">
<div class="bar1">menu</div>
<div class="bar2"></div>
<div class="bar3"></div>
<ul class="mobile-menu main-menu">
<li class="text-r"><a href="index.html">SERTCOAT.XYZ</a></li>
<li class="text-l"><a href="pages/contact.html">CONTACT ME</a></li>
</ul>
</div>
<!-- NORMAL MENU -->
<div>
<nav>
<ul class="main-menu">
<li><a href="index.html">SERTCOAT.XYZ</a></li>
<li>
<a href="pages/contact.html" id="header-contact">CONTACT ME</a>
</li>
</ul>
</nav>
</div>
<div>
<img src="" alt="" />
</div>
</header>
<!-- SELECTIONS -->
<div class="content prevent">
<!--
<iframe
src="https://www.youtube-nocookie.com/embed/jDJbG8VHJ9M?si=cHGFWYbgA9-ymaLv"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
></iframe>
<iframe
src="https://www.youtube-nocookie.com/embed/7Jqb-6w6Ypw?si=kaMOeORePVCfE2ny"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
></iframe>
-->
<footer>
<div>idk</div>
</footer>
</div>
<script src="scripts/script_randomHeader.js"></script>
<script src="scripts/script_menuIcon.js"></script>
</body>
</html>