-
Notifications
You must be signed in to change notification settings - Fork 0
/
2.html
80 lines (69 loc) · 2.38 KB
/
2.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
<!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>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1> FORM </h1>
<form action="">
<fieldset>
<legend>login form</legend>
<label for="">
login :
<br>
<input type="email" placeholder="please enter gmail">
</label>
<br>
<label for="">
password:
<br>
<input type="password" maxlength="8" placeholder="please enter gamil">
</label>
<fieldset>
<legend>personal information</legend>
<label for="">
male
<input type="radio" name="a" id="a">
</label>
<label for="">
female
<input type="radio" name="a" id="a">
</label>
<label for="">
custom
<input type="radio" name="a" id="a" >
<br>
</label>
</fieldset>
</fieldset>
<!-- <form action="/action_page.php">
<input list="browsers">
<datalist id="browsers">
<option value="Edge">
<option value="Firefox">
<option value="Chrome">
<option value="Opera">
<option value="Safari">
</datalist>
</form> -->
<br>
<br>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
<input type="button" onclick="alert('Hello World!')" value="Click Me!">
<input type="button" onclick="alert('hello worls')" value="Click ">
</form>
<div class="container-sm">.container-sm</div>
<div class="container-md">.container-md</div>
<div class="container-lg">.container-lg</div>
<div class="container-xl">.container-xl</div>
<div class="container-xxl">.container-xxl</div>
<div class="progress">
<div class="progress-bar" style="width:70%"></div>
</div>
</body>
</html>