-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
110 lines (97 loc) · 2.14 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
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
<!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>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
color: #333;
}
nav {
background-color: #333;
color: white;
padding: 10px;
text-align: center;
}
nav a {
text-decoration: none;
color: white;
margin: 0 10px;
}
section {
background-color: white;
padding: 20px;
margin: 20px 0;
border-radius: 5px;
}
h2 {
color: #333;
margin-bottom: 10px;
}
p {
margin-bottom: 10px;
}
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 20px;
border: 1px solid #ccc;
padding: 10px;
border-radius: 5px;
}
a {
color: #333;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<nav >
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#projects">Projects</a>
</nav>
<section id="home">
<h2>Welcome to my portfolio!</h2>
<p>I am Bryson Nyahera </p>
<p>My age is 21.</p>
<p>I am a male student.</p>
</section>
<section id="about">
<h2>About me</h2>
<p>I am a junior software developer currently studying web development.</p>
<p>I am looking forward to be able to create an app that can help solve world problems</p>
<p>I have a great enthusiasm to the world of technology.</p>
</section>
<section id="projects">
<h2>Projects</h2>
<ul>
<li>
<a href="#">Project 1</a>
<p>Brief description of my first project.</p>
<p>This is my first idea</p>
</li>
<li>
<a href="#">Project 2</a>
<p>Brief description of my second project.</p>
<p> This is my second idea</p>
</li>
<li>
<a href="#">Project 3</a>
<p>This is a description of my third project</p>
<p>The third idea I have.</p>
</li>
</ul>
</section>
</body>
</html>