-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
136 lines (128 loc) · 4.88 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
<!DOCTYPE html>
<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" />
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/efe28aa7fd.js"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<title>Vansh Sharma || Home</title>
</head>
<!--
- Create bookmark links of all the sections
-->
<body>
<!-- Nav bar -->
<nav>
<ul>
<li id="home"><a class="active" href="#">Home</a></li>
<li><a href="./projects.html">Projects</a></li>
<li><a href="./blogs.html">Blogs</a></li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
<header>
<div class="header--info">
<h2>Vansh Sharma</h2>
<p>a Web Developer</p>
</div>
<div>
<img
class="header--hero"
src="./Images/hero.png"
alt="Home Hero"
/>
</div>
</header>
<div class="underline"></div>
<!-- Main -->
<main>
<!-- Skillls -->
<section class="skills">
<h2 class="section-heading">Technologies</h2>
<div class="skill">
<div class="skill-holder">
<img src="./Images/html-5.svg" alt="HTML5" />
<p class="skill-name">HTML</p>
</div>
<div class="skill-holder">
<img src="./Images/css3.svg" alt="CSS" />
<p class="skill-name">CSS</p>
</div>
<div class="skill-holder">
<img src="./Images/javascript.svg" alt="CSS" />
<p class="skill-name">JavaScript</p>
</div>
<div class="skill-holder">
<img src="./Images/react.svg" alt="REACT" />
<p class="skill-name">REACT</p>
</div>
<div class="skill-holder">
<img src="./Images/firebase.svg" alt="Firebase" />
<p class="skill-name">Firebase</p>
</div>
<div class="skill-holder">
<img src="./Images/git.svg" alt="Git" />
<p class="skill-name">Git</p>
</div>
<div class="skill-holder">
<img src="./Images/netlify.png" alt="Netlify" />
<p class="skill-name">Netlify</p>
</div>
</div>
</section>
<div class="underline"></div>
<!-- Work -->
<section class="work">
<h2 class="section-heading">My Work</h2>
<div class="work-holder">
<article>
<img src="./Images/projects.svg" alt="Projects" />
<h3>Projects</h3>
<p>Checkout my projects here.</p>
<a class="primary-btn" href="./projects.html"
>View Projects..</a
>
</article>
<article>
<img src="./Images/blogs.svg" alt="Projects" />
<h3>Blogs</h3>
<p>Read some of my blogs here.</p>
<a class="secondary-btn" href="./blogs.html"
>Read Blogs..</a
>
</article>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<h3 id="contact" class="footer-title">get in touch</h3>
<div class="footer-wrapper">
<a href="https://twitter.com/Vanshsh2701" target="_blank"
><i class="fab fa-twitter-square"></i>
</a>
<a href="https://github.com/VanshSh" target="_blank"
><i class="fab fa-github-square"></i
></a>
<a
href="https://www.linkedin.com/in/vanshsharma27/"
target="_blank"
><i class="fab fa-linkedin"></i
></a>
<a href="mailto:vanshsharma9354@gmail.com" target="_blank"
><i class="fas fa-envelope"></i
></a>
</div>
</footer>
</body>
</html>