-
Notifications
You must be signed in to change notification settings - Fork 0
/
Portfolio.html
61 lines (61 loc) · 1.62 KB
/
Portfolio.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<style>
header {
background-color: #FF0000;
color: #fff;
padding: 10px 0;
text-align: center;
}
nav {
background-color: #f00000;
padding: 10px 0;
text-align: center;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 10px;
}
nav a:hover {
text-decoration: underline;
}
section {
padding: 20px;
margin: 20px;
border: 1px solid #ccc;
}
</style>
</head>
<body>
<header>
<h1>My Portfolio</h1>
</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. Here, you'll find all information about me and what i do.</p>
</section>
<section id="about">
<h2>About</h2>
<p>I am a web developer. I love creating innovative solutions that make a positive impact in a society.</p>
</section>
<section id="projects">
<h2>Projects</h2>
<p>Here are some of the projects I've worked on:</p>
<ul>
<li><a href="https/::www.dhibitiapp.rf.gd">Pharmacy management App</a></li>
<li>Online booking</li>
<li>E-commerce app</li>
</ul>
</section>
</body>
</html>