-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (82 loc) · 3.89 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Harsh Goel</title>
<link rel="stylesheet" type="text/css" href="src/css/style.css">
<link rel="stylesheet" type="text/css" href="src/fullpage/fullpage.min.css" />
<link rel="stylesheet" type="text/css" href="src/fullpage/examples.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
</head>
<body>
<div id="fullpage">
<ul id="myMenu">
<li data-menuanchor="firstPage" class="active"><a href="#firstPage">First section</a></li>
<li data-menuanchor="secondPage"><a href="#secondPage">Second section</a></li>
<li data-menuanchor="thirdPage"><a href="#thirdPage">Third section</a></li>
<li data-menuanchor="fourthPage"><a href="#fourthPage">Fourth section</a></li>
</ul>
<div class="section fp-auto-height-responsive" id="section0">
<div id="particles-js"></div>
<h1 class="helloheading ">Hi, I'm</h1>
<h1 class="nameheading ">Harsh Goel</h1>
</div>
<div class="section" id="section1">
<h1 class="skills-heading">Skills</h1>
<div class="row skills-icons text-center">
<div class="col">
<img src="./src/imgs/web.png" class="img-fluid webimage">
</div>
<div class="col">
<img src="./src/imgs/computervision.png" class="img-fluid">
</div>
<div class="col">
<img src="./src/imgs/iot.png" class="img-fluid iotimage">
</div>
</div>
<div class="row">
<div class="col">
<p class="skills-para">Web Development</p>
</div>
<div class="col">
<p class="skills-para"> Computer Vision</p>
</div>
<div class="col">
<p class="skills-para"> Internet of Things</p>
</div>
</div>
</div>
<div class="section" id="section2">
<div class="row">
<div class="col">
<img src="./src/imgs/responsive-device.png">
</div>
<div class="col responsive-texts">
<h1 >Responsive Websites</h1>
<p>Love it when your website works on all the devices of various dimensions? </p>
<p>Well, I can do it ✌🏼 </p>
<a href="portfolio.html" class="btn btn-success">My Portfolio</button></a>
</div>
</div>
</div>
<div class="section" id="contact-section">
<h1 class="text-center">Get in Touch!</h1>
<div class="social-media">
<a href="https://www.github.com/harshgoel05/"><i class="fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/harshgoel05/"><i class="fa fa-linkedin"></i></a>
<a href="https://www.facebook.com/harshgoel05/"><i class="fa fa-facebook"></i></a>
<a href="https://www.instagram.com/_d_specialist/"><i class="fa fa-instagram"></i></a>
</div>
</div>
</div>
<div id="loading"></div>
<script type="text/javascript" src="src/fullpage/fullpage.min.js"></script>
<script type="text/javascript" src="src/fullpage/examples.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/particles.min.js"></script>
<script>
particlesJS("particles-js", particlesJSON)
</script>
</body>
</html>