-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.html
More file actions
51 lines (46 loc) · 1.02 KB
/
hello.html
File metadata and controls
51 lines (46 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>My 1st Heading</h1>
<p>This is new to me</p>
<h6>My SHOPPING LIST</h6>
<!-- An Unordered list -->
<div>
<ul>
<li>Milk</li>
<li>Eggs</li>
<li>Cheese</li>
<li>Vegetables</li>
</ul>
</body></div>
</body>
<H4>TO DO</H4>
<!-- An Ordered list -->
<div>
<li>Go to the store</li>
<li>Buy groceries</li>
<li>Return home</li>
<li>Put groceries away</li>
</ol>
</div>
<!-- Images -->
<img src="ChatGPT Image Jun 30, 2025, 11_50_10 PM.png" alt="Placeholder Image">
<!-- Tables -->
<table>
<thread>
<tbody
<tr>
<td>Item</td>
<td>Quantity</td>
<td>Price</td>
</tr>
</thread>
</tbody>
</table>
</body>
</html>