-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
375 lines (351 loc) · 9.83 KB
/
index.html
File metadata and controls
375 lines (351 loc) · 9.83 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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script>
$(document).ready(function(){
$("a").on('click', function(event) {
if (this.hash !== "") {
event.preventDefault();
var hash = this.hash;
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 800, function(){
window.location.hash = hash;
});
}
});
});
</script>
<style>
* {
box-sizing: border-box;
}
.topnav {
overflow: hidden;
background-color: #f2f2f2;
}
.topnav a {
float: left;
display: block;
color: #000;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #888;
color: white;
font-size: 20px;
}
.topnav .icon {
display: none;
}
@media screen and (max-width: 600px) {
.topnav a:not(:first-child) {display: none;}
.topnav a.icon {
float: right;
display: block;
}
}
@media screen and (max-width: 600px) {
.topnav.responsive {position: relative;}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
}
.section1area{
background: url(https://www.nettigritty.com/images/darksquares.png) no-repeat center center fixed;
background-size: cover;
height: 715px;
}
.section2area{
background-color: #888;
background-size: cover;
height: 600px;
}
@media screen and (min-width: 601px) {
div.section1h1 {
font-size: 80px;
color: #fff;
}
div.section2h1 {
font-size: 60px;
color: #fff;
}
div.section1p {
font-size: 29px;
text-align: center;
color: #fff;
}
div.section2p {
font-size: 22px;
text-align: center;
color: #fff;
}
}
@media screen and (max-width: 600px) {
div.section1h1 {
font-size: 40px;
color: #fff;
}
div.section2h1 {
font-size: 40px;
color: #fff;
}
div.section1p {
font-size: 20px;
text-align: center;
text-align: left;
color: #fff;
}
div.section2p {
font-size: 15px;
color: #fff;
}
}
hr {
width:10%;
height:5px;
border-radius: 20px;
padding: 2px;
background: #808080;
}
.zoom {
transition: transform .2s;
}
.zoom:hover {
transform: scale(1.1);
}
button {
background-color: #989898;
color: black;
border-radius: 25px;
padding: 15px 20px;
border: none;
cursor: pointer;
width: auto;
opacity: 0.9;
}
button:hover {
opacity: 1;
}
.input-container {
display: -ms-flexbox; /* IE10 */
display: flex;
width: 100%;
margin-bottom: 15px;
}
.icon {
margin-left: 11%;
border-radius: 25px 0px 0px 25px;
padding: 10px;
background: #888888;
color: white;
min-width: 50px;
text-align: center;
}
.input-field {
border-radius: 0px 25px 25px 0px;
width: 60%;
padding: 10px;
outline: none;
}
.input-field:focus {
border: 2px solid dodgerblue;
}
</style>
</head>
<body style="font-family:Verdana;color:#aaaaaa;">
<br><br>
<div class="section1area" id="section1">
<div class="container">
<div style="text-align:center;">
<br><br>
<div class="section1h1"> Hey! It's Nice To See <br> You On Here..</div>
<div align="center"><hr></div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="section1p">I would like to explore the world of development that is Web Development as</div><br><br>
<div class="section1p">Full Stack Developer as well as Android Development mostly in Unity 2D/3D.</div><br><br>
<div class="section1p">I would like to help, if i can. Find more about me below.</div><br><br>
</div>
</div>
<div align="center"><a href="#section2"><button class="center"><strong>More!</strong></button></a></div>
</div>
</div>
<div class="section2area" id="section2">
<div class="container">
<div style="text-align:center;">
<br><br>
<div class="section2h1">Know more about me</div>
<div align="center"><hr></div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="section2p">Hello, I am Ankit Raj a second year student studing in Jaypee University of Engineering and Technology,Guna.</div><br><br>
<div class="section2p">And Campus Ambassador in CODING BLOCKS as well as Joint Secretary Development in Computer Society of India,Guna.</div><br><br>
<div class="section2p">As i found development more intresting hence i like to do same most of the time.</div><br><br>
<div class="section2p"></div><br><br>
</div>
</div>
<div align="center"><a href="#section3"><button class="center"><strong>Skills!</strong></button></a></div>
</div>
</div>
<div id="section3">
<br><br>
<div style="color:#000;padding:15px;text-align:center;">
<h1>Skills!</h1>
</div>
<div align="center"><hr></div>
<div class="container">
<div class="row">
<div class="col-sm-2" align="center">
<img src="./html5.svg" class="zoom" height="120" width="120">
<h3>HTML 5</h3>
</div>
<div class="col-sm-2" align="center">
<img src="./css3.svg" class="zoom" height="120" width="120">
<h3>CSS 3</h3>
</div>
<div class="col-sm-2" align="center">
<img src="./php.svg" class="zoom" height="120" width="120">
<h3>PHP</h3>
</div>
<div class="col-sm-2" align="center">
<img src="./mysql.svg" class="zoom" height="120" width="120">
<h3>MYSQL</h3>
</div>
<div class="col-sm-2" align="center">
<img src="./github.svg" class="zoom" height="120" width="120">
<h3>GITHUB</h3>
</div>
<div class="col-sm-2" align="center">
<img src="./unity.svg" class="zoom" height="120" width="120">
<h3>UNITY</h3>
</div>
<div class="col-sm-2" align="center">
<img src="./visualstudio.svg" class="zoom" height="120" width="120">
<h3>VISUAL STUDIO</h3>
</div>
</div>
</div>
</div>
<div id="section4">
<br><br>
<div style="color:#000;padding:15px;text-align:center;">
<h1>Projects!</h1>
</div>
<div align="center"><hr></div>
<div class="container">
<div class="row">
<div class="col-sm-6" align="center">
<a href="http://agencydeveloper.000webhostapp.com/"><img src="https://i.imgur.com/reDtrOG.jpg" class="zoom" height="250" width="350"></a>
<h3>A website to manage Agency!</h3>
</div>
<div class="col-sm-6" align="center">
<a href="http://warfortrezor.epizy.com/"><img src="https://i.imgur.com/xhXeX7q.jpg" class="zoom" height="250" width="350"></a>
<h3>A portal for War For Trezor!</h3>
</div>
<div class="col-sm-6" align="center">
<a href="http://oedr.000webhostapp.com/"><img src="https://i.imgur.com/qvMCHaX.jpg" class="zoom" height="250" width="350"></a>
<h3>A website for Education and Free Books!</h3>
</div>
<div class="col-sm-6" align="center">
<a href="http://nssagency.epizy.com/"><img src="https://i.imgur.com/xmSFoKL.jpg" class="zoom" height="250" width="350"></a>
<h3>A website for E-mail Verification while SIGNUP!</h3>
</div>
<div class="col-sm-6" align="center">
<a href="http://nsshabbo.000webhostapp.com/"><img src="https://i.imgur.com/jWk2Xps.jpg" class="zoom" height="250" width="350"></a>
<h3>A website for National Security Service Habbo!</h3>
</div>
</div>
</div>
</div>
<div id="section5">
<br><br>
<div style="color:#000;padding:15px;text-align:center;">
<h1>Contact</h1>
</div>
<div align="center"><hr></div>
<div class="container">
<div class="row">
<div class="col-sm-12" align="center">
<img src="https://i.imgur.com/ZlkQTXK.jpg" class="zoom" height="250" width="250" style="border-radius: 60%">
</div>
<div class="col-sm-6" align="center"><img src="https://i.imgur.com/eI2YhDn.jpg">
<h3 style="color: blue">+91-8579961909</h3>
</div>
<div class="col-sm-6" align="center"><img src="https://i.imgur.com/5FWZ3Nz.jpg">
<a href="mailto:ryder.raj.ankit@gmail.com"><h3>ryder.raj.ankit@gmail.com</h3></a>
</div>
</div>
</div>
</div>
<div id="section6">
<div align="center">
<form action="./mailsender.php" style="max-width:400px;margin:auto" method="post">
<h1>Contact Form</h1>
<div class="input-container">
<i class="fa fa-user icon"></i>
<input class="input-field" type="text" placeholder="Name" name="name">
</div>
<div class="input-container">
<i class="fa fa-envelope icon"></i>
<input class="input-field" type="text" placeholder="Email" name="email">
</div>
<div class="input-container">
<i class="fa fa-phone icon"></i>
<input class="input-field" type="text" placeholder="Phone Number" name="pno">
</div>
<div class="input-container">
<i class="fa fa-quote-left icon"></i>
<textarea class="input-field" type="text" name="msg" rows="4" cols="15" placeholder="Why you what to contact him?"></textarea>
</div>
<button class="btn" id="login" type="submit" name="submit">Submit</button>
</form>
<br>
</div>
</div>
<div style="background-color:#e5e5e5;text-align:center;padding:10px;margin-top:7px;">© copyright aboutankit.epizy.com</div>
<div class="topnav" id="myTopnav" style="position: fixed;
top: 0;
width: 100%;">
<a href="#section1" class="active">Ankit Raj</a>
<a href="#section2">About</a>
<a href="#section3">Skill</a>
<a href="#section4">Project</a>
<a href="#section5">Contact</a>
<a href="#section6">Contact Form</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
</html>