-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (112 loc) · 3.84 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio</title>
<link rel="stylesheet" href="css/style.css" />
<link
href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css"
rel="stylesheet"
/>
</head>
<body>
<header class="header">
<a href="#" class="logo"><span>Lai</span>ba</a>
<nav class="navbar">
<a href="#">Portfolio</a>
<a href="#">Service</a>
<a href="#">Experience</a>
<a href="#">Project</a>
<a href="#">Education</a>
</nav>
<a href="#" class="contact">Contact Me</a>
</header>
<section class="home">
<div class="home-content">
<h3>Hi</h3>
<h1>
I'm <span>Laiba<br /></span>a Frontend Developer
</h1>
<p>
Hello! My name is Laiba, and I am a passionate frontend developer who
recently graduated from Mumbai University. Throughout my academic
journey, I have cultivated a strong foundation in web development,
focusing on creating dynamic, user-friendly, and aesthetically
pleasing interfaces. My expertise lies in HTML, CSS, and JavaScript,
and I am well-versed in modern frameworks such as React and Angular.
</p>
<div class="btn-box">
<button class="btn-1">Hire Me</button>
<button class="btn-2">Experience</button>
</div>
</div>
<div class="img-box">
<img src="women.webp" alt="" />
</div>
</section>
<section class="about">
<div class="about-img">
<img src="women.webp" alt="" />
</div>
<div class="about-content">
<h2 class="heading">About <span>Me</span></h2>
<h3>Frontend <span>Developer</span></h3>
<p>
I am excited to embark on my professional journey as a frontend
developer. My goal is to join a forward-thinking organization where I
can contribute to innovative projects and grow alongside a team of
talented professionals. I am eager to apply my skills and creativity
to build exceptional digital experiences that make a positive impact
on users' lives. Thank you for taking the time to learn more about me.
I look forward to connecting with like-minded individuals and
exploring opportunities that align with my passion for frontend
development.
</p>
<a href="#" class="btn-2">Experience</a>
</div>
</section>
<div class="contact-form">
<h2>Contact Us</h2>
<form>
<div class="input-box">
<input type="text" placeholder="Your Name" />
</div>
<div class="input-box">
<input type="email" placeholder="Your Email" />
</div>
<div class="input-box">
<textarea placeholder="Your Message"></textarea>
</div>
<button type="submit">Send</button>
</form>
</div>
l
<footer class="footer">
<div class="social">
<a href="#"><i class="bx bxl-facebook"></i></a>
<a href="#"><i class="bx bxl-linkedin"></i></a>
<a href="#"><i class="bx bxl-instagram"></i></a>
<a href="#"><i class="bx bxl-twitter"></i></a>
</div>
<ul class="list">
<li>
<a href="#">FAQ</a>
</li>
<li>
<a href="#">Services</a>
</li>
<li>
<a href="#">About Me</a>
</li>
<li>
<a href="#">Contact</a>
</li>
<li>
<a href="#">Privacy Policy</a>
</li>
</ul>
<p class="Copyright">© 2023 Laiba | All Rights Reserved</p>
</footer>
</body>
</html>