-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (36 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Live to Dance</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<link rel="stylesheet" href="styles.css">
<body>
<h1>SignUp</h1>
<form class="login" action="index.html">
<label type="text">Name :</label>
<input type="text" class="check"><br>
<br><br>
<label>E-mail Id :</label>
<input type="email" class="check"><br>
<br><br>
<label>Password :</label>
<input type="Password" class="check"><br>
<br><br>
<label class="detail">Select the form of Dance :</label><br>
<input type="radio" class="check" id="classical" name="dance" value="classical">
<label for="classical">Classical</label><br><br>
<input type="radio" class="check" id="western" name="dance" value="western">
<label for="western">Western</label><br><br>
<label class="detail">Select schedule for learning Dance</label><br>
<input type="radio" class="check" id="morning" name="schedule" value="morning">
<label for="morning">Morning</label><br><br>
<input type="radio" class="check" id="evening" name="schedule" value="evening">
<label for="evening">Evening</label><br>
<br><br>
<button >Submit</button>
</form>
</html>