-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
41 lines (41 loc) · 1.44 KB
/
test.html
File metadata and controls
41 lines (41 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample Web Page</title>
</head>
<body>
<header>
<h1>Welcome to My Web Page</h1>
</header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section id="home">
<h2>Home</h2>
<p>This is the homepage of our sample website. Here, we provide links to other sections of the website and some introductory text.</p>
</section>
<section id="services">
<h2>Services</h2>
<p>We offer a variety of services to help you achieve your goals. Explore our services to find out how we can assist you!</p>
</section>
<section id="about">
<h2>About Us</h2>
<p>Learn more about our company and our mission. We're dedicated to providing the best services possible.</p>
<img src="about-us.jpg" alt="About Us">
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>If you have any questions, please don't hesitate to contact us. You can email us at <a href="mailto:info@example.com">info@example.com</a>.</p>
</section>
<footer>
<p>© 2024 Sample Web Page. All rights reserved.</p>
</footer>
</body>
</html>