-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.55 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">
<title>Christmas</title>
<meta name="Author" content="Maxime Vanhoorneweder">
<link rel="icon" type="image/x-icon" href="assets/media/favicon.ico">
<link rel="stylesheet" href="assets/css/screen.css">
<link rel="stylesheet" media="screen and (max-device-width: 800px)" href="assets/css/screen800.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=Charm:wght@700&display=swap" rel="stylesheet">
<script src="assets/js/init.js"></script>
<script src="assets/js/data/gifts.js"></script>
<!--
Credits: Merry christmas animation Bohdan Ovsienko https://codepen.io/ovsienkobohdan/pen/gZrBrv
-->
</head>
<body>
<div class="container">
<h1 class="animated">Merry Christmas</h1>
</div>
<form>
<label for="pt1">Enter your gift code</label>
<input type="text" required minlength="4" maxlength="4" size="5" placeholder="XXXX" id="pt1">
<label for="pt2">-</label>
<input type="text" required minlength="4" maxlength="4" size="5" placeholder="XXXX" id="pt2">
<label for="pt3">-</label>
<input type="text" required minlength="4" maxlength="4" size="5" placeholder="XXXX" id="pt3">
<label for="pt4">-</label>
<input type="text" required minlength="4" maxlength="4" size="5" placeholder="XXXX" id="pt4">
<input type="submit">
</form>
<article id="gift">
<!-- JS GENERATED -->
</article>
</body>
</html>