forked from lingonsaft/hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
comic.html
executable file
·52 lines (42 loc) · 1.47 KB
/
comic.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
<!DOCTYPE html>
<html>
<head>
<title>register</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
</head>
<body>
<div class="main-1" >
<div class="signup" >
<img src="images/1.jpg"/>
</div>
<div class="contact" >
<form action="" method="post">
<div class="form" >
<p>Name</br>
<input type="text" name="Name" required="">
Email</br>
<input type="email" class="email agileits-btm" name="Email" required="">
</p>
<p>Genre</br>
<select name="genre" style="background-color:#1c1c1c;">
<option value="Action/Adventure">action/adventure</option>
<option value="Children's">children's</option>
<option value="Comedy">Comedy</option>
<option value="fantasy">fantasy</option>
<option value="drama">drama</option>
<option value="drama">erotica</option>
</select>
</p>
<p>Language</br>
<input type="checkbox" name="language" value="english" />English
<input type="checkbox" name="language" value="hindi" />Hindi
</p>
</div>
<input type="submit" value="SUBMIT">
</form>
</div>
</div>
</body>
</html>