-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (119 loc) · 4.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home | Aditya Saxena</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<link rel="stylesheet" href="queries.css" />
</head>
<body>
<nav class="navigation container">
<!-- <div class="nav-brand">ADITYA'S PORTFOLIO</div> -->
<img src="/images/nav-image.svg" alt="" class="nav-image" />
<ul class="list-non-bullet nav-pills">
<li class="list-item-inline link-active">
<a class="link" href="/">Home</a>
</li>
<li class="list-item-inline">
<a class="link" href="projects.html">Projects</a>
</li>
<li class="list-item-inline">
<a class="link" href="blogs.html">Blogs</a>
</li>
<li class="list-item-inline">
<a class="link" href="/">Non-Tech</a>
</li>
</ul>
</nav>
<header class="hero">
<img class="hero-img" src="/images/hero-image.svg" alt="" />
<h1 class="hero-text animate__animated animate__pulse">
aditya saxena |
<span class="hero-inverted">frontend web developer</span>
</h1>
<p class="container-center">
A final year undergraduate at
<span class="hero-inverted"
>National Institute of Technology Jalandhar</span
> with a major in Instrumentation and Control Engineering.
</p>
</header>
<section class="section section-ow">
<div class="container container-center">
<h1>technologies</h1>
<p>
I have worked with Javascript, React, Redux, HTML5, CSS3, Git, C++ and Web Hosting
</p>
</div>
</section>
<section class="section">
<div class="container container-center">
<h1>projects</h1>
<p>
I like to showcase my work and skills, you can see my projects hosted
online through netlify and github pages
</p>
<a class="link link-special-primary" href="projects.html"
>EXPLORE PROJECTS</a
>
</div>
</section>
<section class="section section-ow">
<div class="container container-center">
<h1>blogs</h1>
<p>
I am also working on some project related technical blogs, give them a
read
</p>
<a class="link link-special-secondary" href="blogs.html">READ BLOGS</a>
</div>
</section>
<section class="section">
<div class="container container-center">
<h1>non-tech</h1>
<p>
I have worked in ed-tech for about a year as an educator. I also like
to sing and people say I'm good at it
</p>
<a class="link link-special-secondary" href="projects.html">SEE MORE</a>
</div>
</section>
<footer class="footer">
<div>social media presence</div>
<ul class="list-non-bullets">
<li class="list-item-inline">
<a class="link" target="_blank" href="https://github.com/asaxena012"
><ion-icon class="github" name="logo-github"></ion-icon
></a>
</li>
<li class="list-item-inline">
<a
class="link"
target="_blank"
href="https://www.linkedin.com/in/adityasaxena012/"
><ion-icon class="linkedin" name="logo-linkedin"></ion-icon
></a>
</li>
<li class="list-item-inline">
<a
class="link"
target="_blank"
href="https://twitter.com/_aadisaxena"
>
<ion-icon class= "twitter" name="logo-twitter"></ion-icon>
</a>
</li>
</ul>
</footer>
<!-- Absolute positioned elements -->
<!-- Dark Mode Button -->
<button class="btn-theme">Dark Mode</button>
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
<script src="script.js"></script>
</body>
</html>