-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (91 loc) · 3.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Manik Bhatt Portfolio</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<header class="header">
<a href="#" class="logo"><span>Manik </span>Bhatt</a>
<nav class="navbar">
<a href="#" class="active">Portfolio</a>
<a href="#">Services</a>
<a href="#">Experience</a>
<a href="#">Projects</a>
<a href="#">Education</a>
</nav>
<a href="#" class="contact">Contact Me</a>
</header>
<section class="home">
<div class="home-contact">
<h3>Hi</h3>
<h1>I'am <span>Manik <br></span>a Frontend Developer</h1>
<p>Me as a beginner frontend developer crafts user interfaces for websites using HTML, CSS, and JavaScript. My focus is on creating visually appealing and user-friendly designs while ensuring responsive and interactive experiences across different devices and browsers.</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="manik.jpeg" alt="">
</div>
</section>
<section class="about">
<div class="about-img">
<img src="manik.jpeg" alt="">
</div>
<div class="about-content">
<h2 class="heading">About <span>Me</span></h2>
<h3>Frontend <span>Developer</span></h3>
<p>Passionate and creative professional with a knack for innovative solutions. Gaining experience in a field of frontend devlopment with a good background in C,C++,HTML and CSS. Dedicated to delivering excellence and driving impactful results. Let's collaborate to turn ideas into reality.</p>
<a href="#" class="btn-2">Experience</a>
</div>
</section>
<section class="contact-form">
<h2 class="contact-me">Contact <span>Me</span></h2>
<form action="#">
<div class="input-box">
<input type="text" placeholder="Full Name">
<input type="email" placeholder="Email">
</div>
<div class="input-box">
<input type="number" placeholder="Phone Number">
<input type="text" placeholder="subject">
</div>
<textarea name="" id="" cols="30" rows="10" placeholder="Your message"></textarea>
<input type="submit" value="Send Message" class="btn-1">
</form>
</section>
<footer class="footer">
<div class="social">
<a href="#"><i class='bx bxl-facebook-circle'></i></a>
<a href="#"><i class='bx bxl-linkedin-square' ></i></a>
<a href="#"><i class='bx bxl-twitter' ></i></a>
<a href="#"><i class='bx bxl-instagram-alt' ></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>
</footer>
</body>
</html>