-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.html
114 lines (109 loc) · 3.79 KB
/
events.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="/styles/style.css" />
</head>
<body>
<label for="name">Name: </label>
<input id="name-input" type="text" name="name" />
<!-- Checkbox -->
<div class="checkDiv">
<label for="c"
><input type="checkbox" name="program" id="" value="c" />C
</label>
<label for="cplus"
><input type="checkbox" name="program" id="" value="cplus" />C++
</label>
<label for="java"
><input type="checkbox" name="program" id="" value="java" />Java
</label>
<label for="javascript"
><input
type="checkbox"
name="program"
id=""
value="javascript"
/>JavaScript
</label>
</div>
<!-- select -->
<div class="checkDiv">
<label for="department"> Department: </label>
<select name="department" id="department">
<option value="" selected>Select Option</option>
<option value="cse">CSE</option>
<option value="eee">EEE</option>
<option value="llb">LLB</option>
<option value="bba">BBA</option>
</select>
</div>
<div class="">
<form action="" method="get">
<div>
<label for="name"
>Name:
<input
id="name"
type="text"
name="name"
required
autofocus
/>
</label>
</div>
<div>
<label for="email"
>Email:
<input
id="email"
type="email"
name="email"
required
size="30"
/>
</label>
</div>
<div>
<label for="password"
>Password:
<input
id="password"
type="password"
name="password"
required
minlength="4"
maxlength="8"
/>
</label>
</div>
<div>
<input type="submit" value="signup" />
</div>
</form>
</div>
<div>
<video width="400" controls>
<source
src="videos/Marvel Studios’ I Am Groot S1 E4_ Groot Takes a Bath.mp4"
type="video/mp4"
/>
Your browser does not support html% video elemnt
</video>
</div>
<div>
<details>
<summary>Tahira</summary>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit.
Fugit hic consequuntur ab ullam repellat corrupti asperiores
ipsum, praesentium laboriosam obcaecati sequi minus iure
quae veniam recusandae molestias voluptatem nihil voluptas?
</p>
</details>
</div>
<script src="./scripts/events.js"></script>
</body>
</html>