-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (57 loc) · 1.76 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>My Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>This is v5</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h1>Welcome to My Website</h1>
<p>This is a sample website created to demonstrate a comprehensive HTML structure.</p>
</section>
<section id="about">
<h2>About Us</h2>
<p>We are a company dedicated to providing the best services to our clients.</p>
<img src="about.jpg" alt="About Us">
</section>
<section id="services">
<h2>Our Services</h2>
<article>
<h3>Service 1</h3>
<p>Description of service 1.</p>
</article>
<article>
<h3>Service 2</h3>
<p>Description of service 2.</p>
</article>
<article>
<h3>Service 3</h3>
<p>Description of service 3.</p>
</article>
</section>
<aside>
<h2>Sidebar</h2>
<p>This is a sidebar with additional information.</p>
</aside>
</main>
<footer>
<p>© 2024 My Website. All rights reserved.</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>