-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
55 lines (40 loc) · 1.08 KB
/
about.html
File metadata and controls
55 lines (40 loc) · 1.08 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
<!DOCTYPE html>
<html>
<style>
a:link, a:visited {
background-color: #f44336;
color: white;
padding: 15px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
background-color: red;
}
</style>
<head>
<title>About Me - Abdu</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>About Me</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About Me</a>
<a href="projects.html">Projects</a>
<a href="contact.html">Contact</a>
</nav>
<div class="container">
<h2>My Story</h2>
<p>I am currently a pharmacy student at Haramaya University, but my passion has shifted towards technology and programming. I want to grow as a software engineer, learn new technologies, and build projects that solve real-world problems.</p>
<img src="myphoto.jpg" width="300" alt="my photo">my photo</img>
</div>
<footer>
<p>© 2025 Abdu. All rights reserved.</p>
</footer>
</body>
</html>