-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirstpage.html
More file actions
26 lines (24 loc) · 1012 Bytes
/
firstpage.html
File metadata and controls
26 lines (24 loc) · 1012 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
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>First WEB PAGE</title>
</head>
<body>
<h3>Links</h3>
<a href="index.html">Go To Home</a>
<a href="second.html">Check My Profile</a>
<a href="third page.html">Last Page</a>
<h1>Sample Web Page</h1>
<p>This is a sample webpage showing the basic structure of a web page with the core elements</p>
<h2>Sample Web Page</h2>
<p>This is a sample webpage showing the basic structure of a web page with the core elements</p>
<h3>Sample Web Page</h3>
<p>This is a sample webpage showing the basic structure of a web page with the core elements</p>
<h4>Sample Web Page</h4>
<p>This is a sample webpage showing the basic structure of a web page with the core elements</p>
<h5>Sample Web Page</h5>
<p>This is a sample webpage showing the basic structure of a web page with the core elements</p>
</body>
</html>