-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
65 lines (53 loc) · 2.21 KB
/
about.html
File metadata and controls
65 lines (53 loc) · 2.21 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
<!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>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<div class="logo">A<span>T</span></div>
<input type="checkbox" id="menu-toggle">
<label for="menu-toggle" class="hamburg"><i class="fa-solid fa-bars"></i></label>
<div class="nav-container">
<div class="links">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="projects.html">Projects</a>
</div>
</div>
<div class="dropdown">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="projects.html">Projects</a>
</div>
</nav>
<section>
<div class="main-container">
<div class="content">
<h1 class="typewriter">About <span>Me</span></h1>
<p>
Hi, I'm <strong>Amna Tariq</strong>, a passionate Frontend Web Developer driven by creativity and attention to detail.
I enjoy turning ideas into responsive and visually appealing websites using clean code and modern technologies.
</p>
<p>
With a strong foundation in <strong>HTML</strong>, <strong>CSS</strong>, and <strong>Responsive Design</strong>, I specialize in building user-friendly and mobile-optimized websites.
I constantly explore new tools and techniques to enhance my development skills.
</p>
<p>
Besides coding, I love working on UI/UX, solving design challenges, and creating websites that deliver both aesthetics and functionality.
</p>
</div>
<div class="image">
<img src="main.jpg" alt="Amna Tariq">
</div>
</div>
</section>
<footer>
© 2024 Amna Tariq. All rights reserved.
</footer>
</body>
</html>