-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (89 loc) · 3.79 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
<!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">
<title>Home | Arpita Verma</title>
<link rel="stylesheet" href="style.css">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<nav class="navigation container">
<div class="nav-brand"></div>
<ul class="non-bullet nav-pills">
<li class="list-item-inline">
<a class="links link-active" href="\">Home</a>
</li>
<li class="list-item-inline">
<a class="links" href="projects.html">Projects</a>
</li>
<li class="list-item-inline">
<a class="links" href="blogs.html">Blogs</a>
</li>
</ul>
</nav>
<header class="hero">
<img class="hero-img" src="images\hero.svg" >
<h1 class="hero-heading">Arpita Verma, <span style="color:var(--primary-color)"> The Web Developer</span></h1>
<div class="container hero-heading">
<a class="links primary-link" href="https://drive.google.com/file/d/1HsMJM1i8hZu7JLlizvYxAshazWSJq4eO/view?usp=sharing">My Resume</a>
</div>
</header>
<section class="section ow">
<div class="container container-center">
<h1>About Me </h1>
<p>I am a student at JSS Academy of Technical Education, Noida. I am a passionate web developer and a java programmer who spends most of my time exploring new technologies. Other than coding, I enjoy listening to music and dancing. </p>
</div>
</section>
<section class="section">
<div class="container container-center">
<h1>Skills</h1>
<p>
My skill-set include building responsive web apps in ReactJS and projects using HTML, CSS and Vanilla JS. I am familiar with Git, Github and Web Hosting. I have a sound knowledge of Data Structures and Algorithms.
</p>
</div>
</section>
<section class="section ow">
<div class="container container-center">
<h1>Projects</h1>
<p>Here is a list of some cool projects made by me while I was learning the above sills. Currently emphasizing on full-stack development.
</p>
<a class="links primary-link" href="projects.html">Browse Projects</a>
</div>
</section>
<section class="section">
<div class="container container-center">
<h1>Blogs</h1>
<p>Writing has always played a special role in my life. I love to express my thoughts when they are overcrowding my brain. </p>
<a class="links primary-link" href="blogs.html">Read Blogs</a>
</div>
</section>
<footer class="footer">
<div class="footer-header">Reach Me Out:</div>
<ul class="social-links non-bullet">
<li class="list-item-inline">
<a class="links" href="https://github.com/ArpitaV13">
<i class="fab fa-github"></i>
</a>
</li>
<li class="list-item-inline">
<a class="links" href="https://twitter.com/ArpitaV13"
><i class="fab fa-twitter"></i>
</a>
</li>
<li class="list-item-inline">
<a class="links" href="https://www.linkedin.com/in/arpitav13/">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
</ul>
</footer>
</body>
</html>