-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (60 loc) · 2.94 KB
/
index.html
File metadata and controls
70 lines (60 loc) · 2.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="style.css">
<title>Portfolio Website</title>
</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 data-aos="fade-right" data-aos-duration="1500" data-aos-delay="600">Hey I'm <span>Amna Tariq</span></h1>
<div data-aos="fade-left" data-aos-duration="1500" data-aos-delay="800" class="typewriter">
I'm a <span class="typewriter-text">Frontend Web Developer</span><label for="">|</label>
</div>
<p data-aos="flip-down" data-aos-duration="1500" data-aos-delay="1000">
Passionate about creating beautiful and responsive websites.
Turning ideas into real-world products with creativity and code.
</p>
<div class="social-links">
<i class="fa-brands fa-linkedin" data-aos="fade-up" data-aos-duration="1500" data-aos-delay="1200"></i>
<i class="fa-brands fa-github" data-aos="fade-up" data-aos-duration="1500" data-aos-delay="1300"></i>
<i class="fa-brands fa-facebook" data-aos="fade-up" data-aos-duration="1500" data-aos-delay="1400"></i>
<i class="fa-brands fa-twitter" data-aos="fade-up" data-aos-duration="1500" data-aos-delay="1500"></i>
</div>
<a href="https://drive.google.com/uc?export=download&id=1BGh3JpstCj1NV2PcsvGmq1oaelT-uArk" class="cv-button" target="_blank">
<button data-aos="zoom-in" data-aos-duration="1500" data-aos-delay="1700">Download CV</button>
</a>
</div>
<div class="image" data-aos="zoom-in" data-aos-duration="2000">
<img src="main.jpg" alt="">
</div>
</section>
<script src="script.js"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({offset:0});
</script>
</body>
</html>