-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnotes.html
More file actions
86 lines (66 loc) · 1.95 KB
/
notes.html
File metadata and controls
86 lines (66 loc) · 1.95 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
<!--Document Structure-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Title</title>
</head>
<body>
<!-- Your content goes here -->
</body>
</html>
<!--Links and anchors-->
<a href="https://example.com">Link Text</a>
<a href="#section1">Jump to Section</a>
<a href="mailto:someone@example.com">Email Me</a>
<a href="file.pdf" target="_blank">Open PDF</a>
<!--Images aand media-->
<img src="image.jpg" alt="Description" width="300" height="200">
<audio controls>
<source src="audio.mp3" type="audio/mpeg">
</audio>
<video controls width="400">
<source src="video.mp4" type="video/mp4">
</video>
<iframe src="https://www.example.com" width="400" height="300"></iframe>
<!--Odered list-->
<ol>
<li>First item</li>
<li>Second item</li>
</ol>
<!--Unordered list-->
<ul>
<li>Item one</li>
<li>Item two</li>
</ul>
<!--Tables-->
<table border="1">
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Row 1, Col 1</td>
<td>Row 1, Col 2</td>
</tr>
</table>
<!--Forms and inputs-->
<form action="/submit" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Enter name"><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email"><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password"><br>
<input type="radio" name="gender" value="male"> Male
<input type="radio" name="gender" value="female"> Female<br>
<input type="checkbox" name="subscribe" checked> Subscribe<br>
<textarea name="message" rows="4" cols="30"></textarea><br>
<select name="options">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
</select><br>
<button type="submit">Submit</button>
</form>
</html>