-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (32 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Filling my Vanilla Js Portfolio</title>
<link rel="stylesheet" href="./index.css">
<link rel="shortcut icon" type="image/x-icon" href="./svg/icon.png" />
<script defer src="https://kit.fontawesome.com/5cc2969e12.js" crossorigin="anonymous"></script>
<meta property="og:url" content="https://flamboyant-sinoussi-7ab217.netlify.app/" />
<meta property="og:type" content="article" />
<meta property="og:title" content="My Vanilla Js projects" />
<meta property="og:description" content="How much Vanilla is enough vanilla ??" />
<meta property="og:image" content="https://img.techpowerup.org/200529/preview.jpg" />
</head>
<body>
<h1>All the Vanilla Js Projects <span class="right">that I have done</span></h1>
<main class="container">
</main>
<div class="modal-container" id="modal_container">
<div class="modal">
<h1>You have entered konami Code 😎</h1>
<p class="video">
</p>
<button id="close">
Close me
</button>
</div>
</div>
</body>
<script src="./index.js"></script>
</html>