-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (63 loc) · 2.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Home | Hiddartho</title>
<link href="style.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<nav class="navigation container">
<div class="nav-brand">IAMDEVELOPER</div>
<ul class="list-non-bullet nav-pills">
<li class="list-item-inline">
<a class="link link-active"href="index.html">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>
</ul>
</nav>
<header class="hero">
<img class="hero-img" src="images/git2.svg">
<h1 class="hero-heading">Hiddartho is a <span class="heading-inverted">web developer</span> </h1>
</header>
<section class="section ow">
<div class="container container-center">
<h1>technologies</h3>
<p>I'm familiar with HTML5, CSS3, Git, JavaScript, NodeJS, ReactJs, and Web Hosting</p>
</div>
</section>
<section class="section">
<div class="container container-center">
<h1>Projects</h3>
<p>I like to showcase my work and thus, you can see my projects hosted online</p>
<a class="link link-primary" href="projects.html">See Projects</a>
</div>
</section>
<section class="section ow">
<div class="container container-center">
<h1>Blogs</h3>
<p>I am also working on some technical and non technical blogs. I like to document my journey of learning.</p>
<a class="link link-secondary" href="blogs.html">Read Blogs</a>
</div>
</section>
<footer class="footer">
<div class="footer-header">social media presence</div>
<ul class="social-links list-non-bullet">
<li class="list-item-inline">
<a class="link" href="https://twitter.com/hiddartho" target="_blank"><i class="fa fa-twitter"></i> @hiddartho</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://github.com/hiddartho" target="_blank"><i class="fa fa-github"></i> hiddartho</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://www.linkedin.com/in/siddhartha-baruah-bb36331a0/" target="_blank"><i class="fa fa-linkedin"></i> hiddartho</a>
</li>
</ul>
</footer>
</body>
</html>