-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path6th class.html
More file actions
103 lines (94 loc) · 2.82 KB
/
6th class.html
File metadata and controls
103 lines (94 loc) · 2.82 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<html>
<head>
<title>Document</title>
<title>
Forms
</title>
</head>
<body>
<!-- <p>Date:12/December/2022</p>
<p>Day:Monday</p>
<p>Class= yes</p> -->
<nav>
<a href="https://google.com">Google</a>
<a href="https://www.yahoo.com">Yahoo!</a>
<a href="https://www.bing.com">Bing</a>
</nav>
<!-- <nav role="navigation">
<ul>
<li><a href="https://google.com">Google</a></li>
<li><a href="https://www.yahoo.com">Yahoo!</a></li>
<li><a href="https://www.bing.com">Bing</a></li>
</ul>
</nav> -->
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>
<br>
<br>
<!-- <p>The <label> element is used to reference a form action element.
In the scope of User Interface it's used to ease the target / selection of elements like Type radio or checkbox.</p> -->
<label>
<input type="checkbox" name="Cats">
I like Cats!
</label>
<br>
<br>
<br>
<input type="text" placeholder=" 🔍 Search"/>
<br>
<br>
<form action="./thanksforvisiting.html" target="" autocomplete="on" name="" novalidate>
<input type="datetime-local" />
<br>
<input type="time" />
<br>
<fieldset>
<p><label>Meeting time: <input type=datetime name="meeting.start"></label>
</fieldset>
<br>
Select file to upload:
<input type="file" name="fileSubmission" id="fileSubmission" multiple>
<br>
<br>
<input type="file" name="fileSubmission" accept="image/x-png,image/gif,image/jpeg" />
<label>
<input type="radio" name="color" value="#F00">
Red
</label>
<input type="text" placeholder="Enter your name" name="username" size="10">
<input type="email" name="user email" id="" placeholder="enter your email">
<input type="password" placeholder="Enter your password" name="password">
<input type="number" name="" id="">
<input pattern="\d*" title="numbers only,please">
<textarea name="comment" id="" cols="30" rows="1" placeholder="comment" autofocus></textarea>
<input type="color" name="favcolor" value="#ff0000">
<br>
<br>
<br>
<input type="search" placeholder="search" autocomplete>
<input type="tel" value="+9200000000">
<input type="range" max="100" min="0" step="10" name="range">
<input type="hidden">
<input type="week">
<input type="adress" placeholder="adress">
<br>
<br>
<input type="Reset" name="" id="">
<input type="button" value="Button Text">
<input type="button" onclick="alert('hello world!')" value="Click Me">
<input type="submit" value="submit." formtarget="">
<!-- <button type="button" onclick="alert('hello world!')">Click Me</button> -->
</form>
<br>
<br>
<br>
<!-- <form action="">
<fieldset>
<legend></legend>
</fieldset>
</form> -->
</body>
</html>