-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (65 loc) · 2.59 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
<!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 / Aniket</title>
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="/images/a-FAVICON.png" type="image/x-icon">
</head>
<body>
<nav>
<div class="brand">aniketprakash</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/hero.svg" alt="hero-image">
<h1 class="hero-text">aniket prakash the <span class="hero-tag">web developer</span></h1>
</header>
<section class="section ow">
<div class="container container-center">
<h3>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">
<h3>projects</h3>
<p>Project based learning is what I prefer. You can see my projects hosted online and view source code on github.</p>
<a class="link link-primary" href="/projects.html">see projects</a>
</div>
</section>
<section class="section ow">
<div class="container container-center">
<h3>blogs</h3>
<p>I document my journey on topics which I explore newly or any difficulties faced while working on projects.</p>
<a class="link link-secondary" href="/blogs.html">read blogs</a>
</div>
</section>
<footer>
<div class="footer-header">connect with me</div>
<ul class="list-non-bullet">
<li class="list-item-inline">
<a class="link" href="https://github.com/anik31" target="_blank">github</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://www.linkedin.com/in/anik31/" target="_blank">linkedin</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://twitter.com/_anik_31" target="_blank">twitter</a>
</li>
</ul>
</footer>
</body>
</html>