-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (75 loc) · 3.39 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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Alfa+Slab+One|Indie+Flower" rel="stylesheet">
<link rel = "stylesheet" href = "backend/public/css/style.css">
</head>
<body>
<!-- Header will take up entire viewport -->
<header class="header">
<!-- Background video from coverr -->
<div class="bg-video">
<video class="bg-video__content" autoplay muted loop>
<source src = "backend/public/img/pencil_down/pencil_down.mp4"
type = "video/mp4">
<source src = "backend/public/img/pencil_down/pencil_down.webm"
type = "video/webm">
Your browser is not supported
</video>
</div>
<!-- App Name -->
<div class="header__text-box">
<h1 class="heading-primary">
<span class="heading-primary--main">
Word
</span>
<span class="heading-primary--sub">
By words we learn thoughts, and by thoughts we learn life.
</span>
</h1>
</div>
<!-- Search Form -->
<form class="form">
<input type="text" class="input">
<div class="form__checkboxes">
<div class="form__checkboxes__row">
<input type="checkbox"
name="definition"
class = "checkbox"
id = "definition">
<label class = "checkbox__label" for = "definition">Definition</label>
<input type="checkbox"
name="synonym"
class = "checkbox"
id = "synonym">
<label class = "checkbox__label" for = "synonym">Synonym</label>
</div>
<div class="form__checkboxes__row">
<input type="checkbox"
name="antonym"
class = "checkbox"
id = "antonym">
<label class = "checkbox__label" for = "antonym">Antonym</label>
<input type="checkbox"
name="rhymes"
class = "checkbox"
id = "rhyme">
<label class = "checkbox__label" for = "rhymes">Rhymes</label>
</div>
</div>
<button class="btn btn-form">
submit
</button>
</form>
</header>
<!-- Make sure to load jQuery before your script file. -->
<script
src="https://code.jquery.com/jquery-3.4.0.min.js"
integrity="sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg="
crossorigin="anonymous">
</script>
<script src = "backend/public/js/index.js"></script>
</body>
</html>