-
Notifications
You must be signed in to change notification settings - Fork 0
/
Demo-3.html
50 lines (41 loc) · 1.48 KB
/
Demo-3.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
<!-- Design a form with action and method attributes, including text and submit inputs. -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Comprehensive Guide: HTML and CSS</title>
</head>
<body>
<!-- anchor tag-->
<a href="Contact.html" target="_blank">
<img src="Assest/Images/sadab.jpg" height="10%" width="10%" alt="IMages">
</a>
<!-- Form Tag -->
<form>
<input type="text" placeholder="Enter Your Name"><br>
<input type="email" placeholder="Enter Your E-mail"><br>
<input type="password" placeholder="Enter Your password"><br>
<input type="number" placeholder="Enter Your number"><br>
<textarea placeholder="Enter Your text"></textarea><br>
<input type="date"><br>
<input type="time"><br>
<input type="datetime-local"><br>
<input type="file" multiple><br>
<input type="color"><br>
<input type="checkbox" checked>Html
<input type="checkbox" disable>css
<input type="checkbox">Js
<input type="checkbox">Bootstrap
<br>
<input type="radio" name="Gender">Male
<input type="radio" name="Gender">Female
<input type="radio" name="Gender">Others
<br>
<input type="button" value="Button">
<input type="button" value="Button">
<input type="button" value="Button">
<br>
</form>
</body>
</html>