-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass2-6.html
More file actions
33 lines (31 loc) · 1.23 KB
/
class2-6.html
File metadata and controls
33 lines (31 loc) · 1.23 KB
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
<!DOCTYPE html>
<html>
<head>
<title>forms
</title>
<style type="text/css">
input[type="password"]{
color: blue;
}
</style>
</head>
<body>
<form>
<input type="email" name="email-id" placeholder="enter your mail" required><br><br>
<input type="password" name="password" placeholder="enter your password" name="password" value="san"><br>
<input type="submit" name="submit"value="login"><br>
<label> a</label>
<input type="checkbox"name="checkbox" ><br>
<label> b</label>
<input type="checkbox" name="checkbox"><br>
<label>male</label>
<input type="radio" name="gender" value="male">
<label>female</label>
<input type="radio" name="gender" value="female"><br>
<label>select color</label>
<input type="color" name="color">
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15544.289158868332!2d77.580336!3d13.094605!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4819ffcb28ab4cdc!2sInfidata+Technologies!5e0!3m2!1sen!2sin!4v1531037852399" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
<iframe width="560" height="315" src="https://www.youtube.com/embed/xmU0s2QtaEY" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</form>
</body>
</html>