-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (59 loc) · 2.55 KB
/
index.html
File metadata and controls
64 lines (59 loc) · 2.55 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
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- google 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=Coming+Soon&display=swap" rel="stylesheet">
<!-- Css links -->
<link rel="stylesheet" href="styles/style.css">
<!-- Font awsome -->
<script src="https://kit.fontawesome.com/eefc0ec0dc.js" crossorigin="anonymous"></script>
<title>Zodiac Killer</title>
</head>
<body>
<!--Main page -->
<!--Birthday Form Slide -->
<section class="second-page">
<div class="birthday-form">
<video id="background-video" autoplay loop muted poster="/mp4/blood-hand.mp4">
<source src="/mp4/blood-hand.mp4" type="video/mp4">
</video>
<div class="animation-text">
<h1 class="line-1">Your Zodiac alter-ego </h1>
</div>
<form class ="form" action="/" method="post">
<label for="date">Enter DOB:</label><br>
<input id="date" type="date" name="date"><br>
<input id="submit" type="submit" value="Submit">
</form>
</div>
</section>
<!-- Submit Result Slide -->
<section class="submit-slide">
<!-- background video -->
<video id="background-video-slide" autoplay loop muted poster="/mp4/white.smoke.mp4">
<source src="/mp4/white.smoke.mp4" type="video/mp4">
</video>
<div class="content">
<nav>
<div class ="sideBackBtn" id="arrow" >
<i class="far fa-arrow-alt-circle-left"></i>
</div>
</nav>
<article class="content-top">
<h1 class="meet-your">Meet your zodiac relative!! </h1> <br>
<h2 class="input-text"> You have made it: <br> 30years | 3months | 5days without meeting </h2>
</article>
<article class="content-bottom">
<a id="killer-name-link" href=""><h1 class="input-name">Hannibal Lecter</h1></a>
<img class="input-img" src="/images/killer.gif" alt="killer-pic">
</article>
</div>
</section>
<script type="module" src="js/app.js"></script>
</body>
</html>