-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (64 loc) · 3.71 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
<!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 | Himanshu Kesarwani </title>
<link rel="shortcut icon" href="images/favicon.ico" type="image/favicon">
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<nav class="navigation container">
<div class="nav-brand">Himanshu Kesarwani</div>
<ul class=" list-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/main-img.svg" alt="">
<h1 class="hero-heading size-lg">Hi, I am <span class="hero-heading-inverted">Himanshu!</span> </h1>
<h1 class="hero-heading">A Front-End <span class="hero-heading-inverted">Developer.</span> </h1>
</header>
<hr>
<section class="section">
<div class="container container-center">
<h1>Who am I?</h1>
<p><strong>Himanshu is a Front End Developer based out of India, who loves Javascript.</strong> He spends his day learning or writing his own code. Known for being Ambivert by nature and Optimist by choice. If not working or distracted, can be found reading in a corner, enjoying music or gazing the stars.</p>
</div>
</section>
<section class="section ow">
<div class="container container-center">
<h1>Technologies</h1>
<p>I have a keen interest in learning new technologies while polishing my existing ones. Currently, I am familiar with majorly front-end technologies like <strong> HTML5, CSS3, Git, Github, JavaScript, NodeJs, ReactJs, and Web Hosting. </strong> </p>
</div>
</section>
<section class="section">
<div class="container container-center">
<h1>Projects</h1>
<p>There are a few projects I built as a part of my learings and would love to share it with the world. (with it's source code Obviously!). The projects are hosted online, click below to see.</p>
<a class=" links link-primary" href="projects.html">See Projects</a>
</div>
</section>
<section class="section ow ">
<div class="container container-center">
<h1>Blogs</h1>
<p>I have tried my best to explain few technical and non-technical concepts. I believe there's no better to learn than to explain. Unlearning, Relearning and Documenting. That's all I do. Read a few!</p>
<a class="links link-secondary" href="blogs.html">Read Blogs</a>
</div>
</section>
<footer class="footer">
<div class="footer-header">Connect with me!</div>
<ul class="list-non-bullet">
<li class=" list-item-inline"><a class="links" href="mailto:himanshukesarwani.dev@gmail.com">Email</a></li>
<li class=" list-item-inline"><a class="links" href="https://www.twitter.com/himanshu800">Twitter</a></li>
<li class=" list-item-inline"><a class="links" href="https://github.com/himanshukesarwani-dev">Github</a> </li>
<li class="list-item-inline"><a class="links" href="https://www.linkedin.com/in/himanshukesarwani/">LinkedIn</a></li>
<li class="list-item-inline"><a class="links" href="https://www.instagram.com/himanshukesarwani.dev/">Instagram</a></li>
</ul>
<p class="footer-credit">Made with ❤️ by Himanshu | NeogCamp Learnings</p>
</footer>
</body>
</html>