-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (48 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</meta>
<meta charset="utf-8">
</meta>
<link id="css" rel="preload"
href="https://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sJVD7MOzlojwUKQ.woff"
as="font" type="font/woff2" crossorigin>
</link>
<link id="css" rel="stylesheet" type="text/css" href="https://scorchchamp.github.io/style.css" media="all">
</link>
<script src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5779624385801311"
crossorigin="anonymous" async></script>
<script src="https://scorchchamp.github.io/auto-format.js"></script>
<link rel="stylesheet" href="./style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js"></script>
</head>
<body>
<div class="app-container">
<h1 id="doomsday-name"></h1>
<h2 id="doomsday-date"></h1>
<h3 id="doomsday-explanation"></h3>
<div>
<form id="input-form">
<p>
<label for="date-input">Enter your birthday:</label>
<input type="datetime-local" id="date-input" name="birthday" required>
</p>
<p>
<label for="country">Enter your Country:</label>
<select name="country" id="country" required></select>
</p>
<p>
<label for="name-input">Enter your name:</label>
<input type="text" id="name-input" name="name" required></input>
</p>
<p>
<input type="submit" value="Generate clock!"></input>
</p>
</form>
</div>
<div id="output"></div>
<script src="./app.js"></script>
</div>
</body>
</html>