-
Notifications
You must be signed in to change notification settings - Fork 34
/
index.html
79 lines (67 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>GTCoding</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h2>Video Category</h2>
<div class="select-box">
<div class="options-container">
<div class="option">
<input
type="radio"
class="radio"
id="automobiles"
name="category"
/>
<label for="automobiles">Automobiles</label>
</div>
<div class="option">
<input type="radio" class="radio" id="film" name="category" />
<label for="film">Film & Animation</label>
</div>
<div class="option">
<input type="radio" class="radio" id="science" name="category" />
<label for="science">Science & Technology</label>
</div>
<div class="option">
<input type="radio" class="radio" id="art" name="category" />
<label for="art">Art</label>
</div>
<div class="option">
<input type="radio" class="radio" id="music" name="category" />
<label for="music">Music</label>
</div>
<div class="option">
<input type="radio" class="radio" id="travel" name="category" />
<label for="travel">Travel & Events</label>
</div>
<div class="option">
<input type="radio" class="radio" id="sports" name="category" />
<label for="sports">Sports</label>
</div>
<div class="option">
<input type="radio" class="radio" id="news" name="category" />
<label for="news">News & Politics</label>
</div>
<div class="option">
<input type="radio" class="radio" id="tutorials" name="category" />
<label for="tutorials">Tutorials</label>
</div>
</div>
<div class="selected">
Select Video Category
</div>
<div class="search-box">
<input type="text" placeholder="Start Typing..." />
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>