-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUntitled-1.html
More file actions
115 lines (103 loc) · 2.78 KB
/
Copy pathUntitled-1.html
File metadata and controls
115 lines (103 loc) · 2.78 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NexMwendwa Enterprise</title>
<style>
/* Global Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
header {
background-color: #333;
color: white;
padding: 1rem 0;
text-align: center;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
}
main {
padding: 2rem;
}
section {
margin-bottom: 2rem;
}
section h2 {
border-bottom: 2px solid #333;
display: inline-block;
margin-bottom: 10px;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1rem 0;
}
ul {
padding: 0;
}
ul li {
margin: 5px 0;
}
</style>
</head>
<body>
<header>
<h1>Welcome to NexMwendwa Enterprise</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<!-- About Section -->
<section id="about">
<h2>About Me</h2>
<p>Hi! I'm a passionate web developer specializing in creating modern, responsive, and user-friendly websites.</p>
</section>
<!-- Skills Section -->
<section id="skills">
<h2>Skills</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>React</li>
<li>Node.js</li>
</ul>
</section>
<!-- Projects Section -->
<section id="projects">
<h2>Projects</h2>
<ul>
<li><a href="#">Portfolio Website</a></li>
<li><a href="#">E-commerce App</a></li>
<li><a href="#">Blog Platform</a></li>
</ul>
</section>
</main>
<footer>
<p>© 2024 NexMwendwa Enterprise. All Rights Reserved.</p>
</footer>
</body>
</html>