-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (41 loc) · 1.08 KB
/
index.html
File metadata and controls
48 lines (41 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
<!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>Abdu's Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Hi, I'm Abdu</h1>
<p>Passionate about Technology, Programming, and Learning</p>
</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>Welcome to My Portfolio</h2>
<p>This is where I share my journey in technology and programming. I am currently studying pharmacy, but my passion lies in software engineering, coding, and web development.</p>
<img src="myphoto.jpg" alt="Profile Picture"></img>
</div>
<footer>
<p>© 2025 Abdu. All rights reserved.</p>
</footer>
</body>
</html>