-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
146 lines (146 loc) · 5.2 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gaurav Pant</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!--Navbar section-->
<nav class="navbar">
<div class="navbar__container">
<a href="#home" id="navbar__logo">Gaurav Pant</a>
<div class="navbar__toggle" id="mobile-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="navbar__menu">
<li class="navbar__item">
<a href="#home" class="navbar__links" id="home-page">Home</a>
</li>
<li class="navbar__item">
<a href="#about" class="navbar__links" id="about-page">About</a>
</li>
<li class="navbar__item">
<a href="#services" class="navbar__links" id="services-page"
>Services</a
>
</li>
<li class="navbar__item">
<a href="#projects" class="navbar__links" id="projects-page">Projects</a>
</li>
<li class="navbar__item">
<a href="#blog" class="navbar__links" id="blog-page">Blogs</a>
</li>
<!-- <li class="navbar__btn">
<a href="#sign-up" class="button" id="signup">Sign Up</a>
</li> -->
</ul>
</div>
</nav>
<!-- Hero section / Main section -->
<div class="hero__section" id="home">
<div class="hero__profile-pic"></div>
<h1 class="hero__heading typing-demo">Front-End <span>Developer < / ></span> </h1>
<div class="hero__description"><span> Hello World ! I am Gaurav Pant , a front-end developer based in India.</span></div>
<button type="button" class="hero__btn" >Get in Touch</button>
</div>
<hr>
<!-- Projects section -->
<div class="projects-section" id="projects">
<div class="projects-cover">
<h2>Some of the projects I've worked on...</h2>
<div class="project-link">
<div class="card">
<div class="card-img"></div>
<div class="container">
<h4><b>John Doe</b></h4>
<p>Architect & Engineer</p>
</div>
</div>
<div class="card">
<div class="card-img"></div>
<div class="container">
<h4><b>John Doe</b></h4>
<p>Architect & Engineer</p>
</div>
</div>
<div class="card">
<div class="card-img"></div>
<div class="container">
<h4><b>John Doe</b></h4>
<p>Architect & Engineer</p>
</div>
</div>
<div class="card">
<div class="card-img"></div>
<div class="container">
<h4><b>John Doe</b></h4>
<p>Architect & Engineer</p>
</div>
</div>
</div>
</div>
</div>
<hr>
<div class="services" id="services">
<h1 style="text-align: center;margin-top: 1rem;">Services I can help you with...</h1>
<div class="services-all">
<div class="services-card web-dev">
<h3>Website Development</h3>
</div>
<div class="services-card web-design">
<h3>Website Designing</h3>
</div>
<div class="services-card content-writing">
<h3>Content Writing</h3>
</div>
</div>
</div>
<hr>
<div class="outro" >
<h1>Let's start something amazing together !</h1>
<h2>Tell me about your project or idea , I would love to hear that.</h2>
<button class="outro__btn">Contact Me</button>
</div>
<hr>
<div class="footer">
<div class="intro-footer" >Hello World ! This is Gaurav Pant , an undergraduate currently pursuing Bachelors Of Computer Applications(BCA) from Ambedkar Institute Of Technology , New Delhi. I am a front-end developer and aspiring to become a full-stack developer in the near future .</div>
<div class="copyrights">© 2021 Gaurav Pant <br> All Rights Reserved </div>
<div class="social-media-links">
<ul>
<li>
<a href="https://mail.google.com/pantgaurav31" target="_blank"
><img
class="gmail-icon"
src="./images/icons/gmail.svg"
alt="gmail icon"
/></a>
</li>
<li>
<a
href="https://www.linkedin.com/in/gauravpant31/"
target="_blank"
><img
class="linkedin-icon"
src="./images/icons/linkedin.svg"
alt="linkedin icon"
/></a>
</li>
<li>
<a href="https://twitter.com/iamgauravpant" target="_blank"
><img
class="twitter-icon"
src="./images/icons/twitter.svg"
alt="twitter icon"
/></a>
</li>
</ul>
</div>
</div>
<script src="./js/app.js"></script>
</div>
</body>
</html>