-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
25 lines (22 loc) · 750 Bytes
/
Index.html
File metadata and controls
25 lines (22 loc) · 750 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description" content="This is a simple html web page">
<meta name="author" content="Simon PLP Student">
<title>My First Web Page</title>
</head>
<body>
<header>
<h1>My Website Heading</h1>
<h3>Another Heading</h3>
<h6>The last heading</h6>
</header>
<main>
<p>This is a paragraph on my first web page.</p>
<a href="https://google.com">Visit Google.COM</a>
</main>
<footer>
<p>© 2025. My Website. All rights reserved.</p>
</footer>
</body>
</html>