-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectpage.html
More file actions
73 lines (68 loc) · 1.84 KB
/
Copy pathProjectpage.html
File metadata and controls
73 lines (68 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Combined HTML Examples</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
h2 {
border-bottom: 2px solid #000;
padding-bottom: 10px;
}
img {
max-width: 100%;
height: auto;
}
</style>
</head>
<body>
<!-- Basic HTML Page -->
<section>
<h1>Basic HTML Page</h1>
<p>This is a simple HTML page.</p>
</section>
<!-- Links Example -->
<section>
<h2>Links Example</h2>
<p>Visit <a href="https://www.example.com" target="_blank">Example.com</a> for more information.</p>
<p>Go back to the <a href="#basic-html">Basic HTML Page</a>.</p>
</section>
<!-- Image Example -->
<section>
<h2>Image Example</h2>
<img src="https://via.placeholder.com/150" alt="Placeholder Image">
<p>This is an example of an image in HTML.</p>
</section>
<!-- Form Example -->
<section>
<h2>Form Example</h2>
<form action="/submit" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name">
<br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email">
<br><br>
<input type="submit" value="Submit">
</form>
</section>
<!-- List Example -->
<section>
<h2>List Example</h2>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<ol>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ol>
</section>
</body>
</html>