-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (42 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Chuck Norris</title>
<link rel="stylesheet" href="assets/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap">
<link rel="icon" href="assets/icons/chuck.svg" type="image/svg+xml">
</head>
<body>
<main>
<header class="header">
<address class="">
<a target="_blank" href="https://macpaw.com/internship"><strong>MSI 2020</strong></a>
<a target="_blank" href="https://github.com/olena-olena/chuck-norris-facts" class="auxiliary">GitHub</a>
</address>
</header>
<div class="headers">
<h1>Hey!</h1>
<h2>Let’s try to find a joke for you:</h2>
</div>
<form id="form">
<input type="radio" name="joke-type" class="radio current" id="random" checked><label for="random">Random</label><br>
<input type="radio" name="joke-type" class="radio" id="category"><label for="category">From category</label><br>
<!-- hidden elements section --><div class="hidden selection-level" id="categories-list" >Loading categories...</div>
<input type="radio" name="joke-type" class="radio" id="search"><label for="search">Search</label><br>
<!-- hidden elements section --><input class="hidden selection-level" id="search-field" type="search" placeholder="Free text search...">
<input type="submit" id="getJoke" class="submit" value="Get a joke">
</form>
<article class="jokes">
<!-- jokes -->
</article>
</main>
<section>
<h1 class="header">Favourite</h1>
<article class="jokes">
<p style="margin-top: 108px;">Here your favourites will appear</p>
</article>
</section>
<script type="module" src="main.js"></script>
</body>
</html>