-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsamplewebpage.html
More file actions
74 lines (65 loc) · 1.99 KB
/
samplewebpage.html
File metadata and controls
74 lines (65 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Webpage with More Content</title>
</head>
<body>
<h1>Welcome to My Webpage!</h1>
<p>This webpage now has more examples of HTML content for you to explore!</p>
<h2>My Favorite Things</h2>
<p>Here are a few of my favorite things listed in different ways:</p>
<h3>Unordered List (Bullet Points)</h3>
<ul>
<li>Coffee</li>
<li>Coding</li>
<li>Sunshine</li>
<li>Learning</li>
</ul>
<h3>Ordered List (Numbered)</h3>
<ol>
<li>Wake up</li>
<li>Drink coffee</li>
<li>Write code</li>
<li>Learn something new</li>
</ol>
<h3>Table Example</h3>
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>Occupation</th>
</tr>
</thead>
<tbody>
<tr>
<td>Alice</td>
<td>30</td>
<td>Web Developer</td>
</tr>
<tr>
<td>Bob</td>
<td>25</td>
<td>Data Scientist</td>
</tr>
<tr>
<td>Charlie</td>
<td>35</td>
<td>Project Manager</td>
</tr>
</tbody>
</table>
<h3>Simple Form</h3>
<form action="#" method="post">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" value=""><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" value=""><br><br>
<input type="submit" value="Submit">
</form>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Earth_Eastern_Hemisphere.jpg/240px-Earth_Eastern_Hemisphere.jpg" alt="Image of the Earth" width="200">
<p><a href="https://www.example.com">Visit Example Website</a></p>
</body>
</html>