-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
124 lines (106 loc) · 2.47 KB
/
about.html
File metadata and controls
124 lines (106 loc) · 2.47 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f5f5f5;
color: #333;
}
header {
background-color: #007bff;
color: white;
padding: 20px;
text-align: center;
}
.container {
max-width: 900px;
margin: 40px auto;
background-color: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
h2 {
color: #007bff;
}
p {
line-height: 1.6;
}
.skills {
margin-top: 20px;
}
.skills ul {
list-style-type: square;
padding-left: 20px;
}
footer {
text-align: center;
padding: 20px;
background-color: #f1f1f1;
margin-top: 40px;
}
body {
margin: 0;
font-family: Arial, sans-serif;
}
.navbar {
background-color: #007bff;
padding: 15px 20px;
display: flex;
justify-content: flex-start;
align-items: center;
}
.navbar a {
color: white;
text-decoration: none;
margin-right: 20px;
padding: 10px 15px;
border-radius: 5px;
transition: background-color 0.3s;
}
.navbar a:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="navbar">
<a href="index.html">Home</a>
<a href="about.html">About</a>
</div>
<header>
<h1>About Me</h1>
</header>
<div class="container">
<h2>Hello, I'm Abdullah Jamil </h2>
<p>
I'm a passionate Software Engineering student with experience in developing web-based applications.
I love building efficient, scalable, and user-friendly digital products.
</p>
<p>
Currently, I'm pursuing my Bachelor's degree and working on exciting projects like health care apps and agile team trackers.
</p>
<div class="skills">
<h3>Skills & Technologies:</h3>
<ul>
<li>HTML, CSS, JavaScript</li>
<li>React.js, Next.js</li>
<li>Node.js, Express</li>
<li>GitHub, Git</li>
</ul>
</div>
<p>
Outside of coding, I enjoy reading about tech trends, exploring new tools, and contributing to open-source projects.
</p>
</div>
<footer>
© 2025 [Your Name]. All rights reserved.
</footer>
</body>
</html>