-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (85 loc) · 2.86 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
<!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 | Akash Vinchankar</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.1/css/all.css"
/>
</head>
<body>
<nav class="navigation container">
<div class="nav-brand">Akash Vinchankar</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 container">
<img class="hero-image" src="Images/hero.svg" alt="" />
<h1 class="hero-heading">
Akash Vinchankar the <span class="heading-inverted">Web Developer</span>
</h1>
</header>
<section class="section off-white container">
<div class="container container-center">
<h1>Technologies</h1>
<p>
I'm familier with HTML5, CSS3, Git, JavaScript,React.js, NodeJS and
Web Hosting
</p>
</div>
</section>
<section class="section container">
<div class="container container-center">
<h1>Projects</h1>
<p>
I like to showcase my work and thus, you can see my projects hosted
online
</p>
</div>
<a class="link link-primary" href="projects.html">See Projects</a>
</section>
<section class="section off-white container">
<div class="container container-center">
<h1>Blogs</h1>
<p>
I like to write on some topics which are useful and informative in a
simplified way.
</p>
</div>
<a class="link link-secondary" href="blogs.html">See Blogs</a>
</section>
<footer class="footer container">
<div class="footer-header">Connect to me on socials</div>
<ul class="list-non-bullet">
<li class="list-item-inline">
<a class="link" href="https://github.com/akashvinchankar"
><i class="fab fa-github" style="font-size: 30px"></i
></a>
</li>
<li class="list-item-inline">
<a class="link" href="https://www.linkedin.com/in/akash-v-8bb291131/"
><i class="fab fa-linkedin" style="font-size: 30px"></i
></a>
</li>
<li class="list-item-inline">
<a class="link" href="https://twitter.com/akashvinchankar"
><i class="fab fa-twitter" style="font-size: 30px"></i
></a>
</li>
</ul>
</footer>
</body>
</html>