-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.91 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
<!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>Html Elements Example</title>
</head>
<body>
<main>
<p>Html Element Examples<p/>
<p>Inputs</p>
<button type="button" name="myButton" autofocus>Button</button>
<label><input type="checkbox" name="myCheckbox">Checkbox</label>
<label> <input type="radio" name="myCheckbox">radio</label>
<input type="color" name="Color" value="#ffffff">
<input type="datetime-local" name="datetimelocal" value="2024-06-07T07:54">
<input type="email" name="myInput" placeholder="[email protected]" size="30" multiple>
<input type="file" name="myInput" accept="*.*" multiple>
<input type="image" src="0.png" name="myButton" height="38" width="115">
<input type="number" name="myInput" placeholder="Number" step="1">
<input type="password" name="myInput" placeholder="Password" size="20" required>
<input type="range" name="myInput" placeholder="Range Input" min="0" max="100" required>
<input type="search" name="myInput" placeholder="Search..." size="30" spellcheck>
<input type="submit" name="myInput" value="Submit">
<input type="text" name="myInput" placeholder="Text" size="30" spellcheck>
<textarea name="myTextarea" placeholder="Your message here" cols="20" rows="10" spellcheck></textarea>
<input type="url" name="myInput" pattern="https://*" size="20" required>
<p>Displays</p>
<audio><source src="" type="audio/ogg"><source src="" type="audio/mpeg"></audio>
<img src="" alt="" width="400">
<video controls height="220" width="390"><source src="" type="video/mp4"></video>
</main>
<footer>
<p>{Footer Content}</p>
</footer>
</body>
</html>