-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (118 loc) · 3.67 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
<!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" />
<link rel="icon" href="favicon.ico" />
<title>Portfolio</title>
<link href="styles.css" rel="stylesheet" />
</head>
<body>
<nav class="navigation-container">
<div class="nav-brand"><Aashish Kaushik /></div>
<ul class=".list-non-bullet nav-pills">
<li class="list-item-inline">
<a class="links active-link" href="/">Home</a>
</li>
<li class="list-item-inline">
<a class="links" href="project.html">Projects</a>
</li>
<!-- <li class="list-item-inline">
<a class="links" href="blog.html">Blogs</a>
</li> -->
<li class="list-item-inline">
<a
class="links"
href="https://drive.google.com/file/d/1m9kzXcbgX9qP2jHNWKlxcWW8kcO5MYYU/view?usp=sharing"
>Resume</a
>
</li>
</ul>
</nav>
<header class="hero">
<img class="hero-img" src="image/20201215_130947.jpg" />
<h1 class="hero-heading">Aashish Kaushik</h1>
<p class="sub-headind">Web Developer</p>
</header>
<section class="section of">
<h1>Technologies</h1>
<div class="container">
<p>I am familiar with Html , CSS ,C++,javascript, jQuery, Nodejs, ejs</p>
</div>
</section>
<section class="section">
<h1>Projects</h1>
<div class="container">
<p>
I would like to showcase my work and thus you can see my projects
hosted online
</p>
<a class="links primarylinks" href="project.html"> Browse Projects </a>
</div>
</section>
<!-- <section class="section of">
<h1>Blogs</h1>
<div class="container">
<p>
I am also work on technicial and non-technical blogs i like to
document my journey to learning
</p>
<a class="links primarylinks" href="blog.html"> BROWSER BLOGS </a>
</div>
</section> -->
<footer class="footer">
<div class="footer-heading">Contacts</div>
<ul class="social-link">
<li class="list-item-inline">
<a
class="links"
href="https://www.instagram.com/aashishkaushik_akay/"
target="blank"
>
<img
class="icon"
src="https://www.vectorlogo.zone/logos/instagram/instagram-tile.svg"
alt="Instagram"
/></a>
</li>
<li class="list-item-inline">
<a
class="links"
href="https://github.com/Aashish-Kaushik/"
target="blank"
><img
class="icon"
src="https://www.vectorlogo.zone/logos/github/github-tile.svg"
alt="Github"
/>
</a>
</li>
<li class="list-item-inline">
<a
class="links"
href="https://twitter.com/AashishKaushikD/"
target="blank"
><img
class="icon"
src="https://www.vectorlogo.zone/logos/twitter/twitter-tile.svg"
alt="twitter"
/></a>
</li>
<li class="list-item-inline">
<a
class="links"
href="https://www.linkedin.com/in/aashishkaushik26//"
target="blank"
><img
class="icon"
src="https://www.vectorlogo.zone/logos/linkedin/linkedin-tile.svg"
alt="Linkedin"
/>
</a>
</li>
</ul>
<p>@2021 Aashish Kaushik</p>
</footer>
</body>
</html>