-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
46 lines (39 loc) · 1.13 KB
/
Index.html
File metadata and controls
46 lines (39 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My website</title>
</head>
<body>
<header>
<h1>Welcome to my website</h1>
</header>
<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>
<main>
<section id="home">
<h2>Home</h2>
<P>This is my website. I am here to provide quality services</P>
</section>
<section id="about me">
<h2>About me</h2>
<p>Learn more about my company and my team</p>
</section>
<section id="services">
<h2>My services</h2>
<p>I offer services that meets your needs</p>
</section>
</main>
<footer>
<p>Contact me at: <a href="mailto: elizawambui2926@gmail.com">elizawambui2926@gmail.com</a></p>
<p>© 2025 My Website. All rights reserved.</p>
</footer>
</body>
</html>