-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPortfolio.html
More file actions
40 lines (36 loc) · 1.34 KB
/
Portfolio.html
File metadata and controls
40 lines (36 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Portfolio </title>
</head>
<body>
<header>
<h1> CLARE MAKAA </h1>
<p> Certified Web Developer </p>
</header>
<nav>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#projects">Projects</a>
</nav>
<section id="home">
<h2>Home</h2>
<p>Welcome to my portfolio website. Explore the various sections to learn more about me and my projects.</p>
</section>
<section id="about">
<h2>About</h2>
<p>I am a passionate web developer with expertise in front-end and back-end technologies. Learn more about my background, skills, and experience in this section.</p>
</section>
<section id="projects">
<h2>Projects</h2>
<p>Check out some of my featured projects below:</p>
<ul>
<li>Project 1: Creation of a Moi University's students portal </li>
<li>Project 2: Development of a job application website </li>
<li>Project 3: Creation of Familia Hospital's website </li>
</ul>
</section>
</body>
</html>