-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
168 lines (158 loc) · 5.38 KB
/
index.html
File metadata and controls
168 lines (158 loc) · 5.38 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous"/>
<link href="https://fonts.googleapis.com/css?family=Poppins:200i,300,400&display=swap" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css?family=Raleway:700&display=swap" rel="stylesheet"/>
<title>Kailash Chandra Bhakta</title>
<link rel="icon" type="image/jpg" href="imgs/IMG_DP.jpg"/>
</head>
<body>
<!--- START NAV -->
<nav id="navbar" class="nav">
<ul class="nav-list">
<li>
<a href="#welcome-section">About</a>
</li>
<li>
<a href="#projects">Projects</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
<!-- End Nav -->
<!-- Start Welcome Section --->
<section id="welcome-section" class="welcome-section">
<img id="profile" src="imgs/IMG_DP.jpg" alt="Profile picture">
<h1>Hi! I am Kailash</h1>
<p>Javascript Developer</p>
<p>Senior Year @ IIT BHU</p>
</section>
<!-- End Welcome Section -->
<!-- Start Project Section -->
<section id="projects" class="projects-section">
<h2 class="projects-section-header">These are some of my projects</h2>
<div class="projects-grid">
<a
href="https://github.com/AMSKarmajeet/COVID_Tracker"
target="_blank"
class="project project-title">
<img class="project-image" src="imgs/COVIDX.png" alt="project 1"/>
<p class="project-title">
<span class="code"><</span>
Covid Tracker
<span class="code">/></span>
</p>
</a>
<a
href="https://github.com/AMSKarmajeet/truckx_assignment"
target="_blank"
class="project project-title">
<img class="project-image" src="imgs/Customer-dashboard.png" alt="project 2"/>
<p class="project-title">
<span class="code"><</span>
Customer Dashboard
<span class="code">/></span>
</p>
</a>
<a
href="https://github.com/AMSKarmajeet/DIH_Summer"
target="_blank"
class="project project-title">
<img class="project-image" src="imgs/Echolocator.jpg" alt="project 3"/>
<p class="project-title">
<span class="code"><</span>
Echolocating Device
<span class="code">/></span>
</p>
</a>
<!--
<a
href="#"
target="_blank"
class="project project-title">
<img class="project-image" src="#" alt="project 4"/>
<p class="project-title">
<span class="code"><</span>
Map Data across the Globe
<span class="code">/></span>
</p>
</a>
<a
href="#"
target="_blank"
class="project project-title">
<img class="project-image" src="#" alt="project 5"/>
<p class="project-title">
<span class="code"><</span>
Wikipedia Viewer
<span class="code">/></span>
</p>
</a>
<a
href="#"
target="_blank"
class="project project-title">
<img class="project-image" src="#" alt="project 6"/>
<p class="project-title">
<span class="code"><</span>
Tic Tac Toe Game
<span class="code">/></span>
</p>
</a>
-->
</div>
<a
href="https://github.com/AMSKarmajeet?tab=repositories"
target="_blank"
class="btn btn-show-all">
Show all<i class="fas fa-chevron-right"></i>
</a>
</section>
<!-- End Project Section -->
<!-- Start contact Section -->
<section id="contact" class="contact-section">
<div class="contact-section-header">
<h2>Let's collaborate...</h2>
<p>How do you take your coffee?</p>
</div>
<div class="contact-links">
<a
href="https://www.facebook.com/kailashchandra.bhakta.5/"
target="_blank"
class="btn contact-details"><i class="fab fa-facebook-square"></i> Facebook
</a>
<a
href="https://github.com/AMSKarmajeet"
id="profile-link"
target="_blank"
class="btn contact-details"><i class="fab fa-github"></i> GitHub
</a>
<a
href="https://twitter.com/BhaktaKailash"
target="_blank"
class="btn contact-details"><i class="fab fa-twitter"></i> Twitter
</a>
<a
href="mailto:kchandra.bhakta.bme16@iitbhu.ac.in"
class="btn contact-details"><i class="fas fa-at"></i> Send a mail
</a>
<a
href="tel:+91-9556107656"
class="btn contact-details"><i class="fas fa-mobile-alt"></i> Call me
</a>
</div>
</section>
<!-- End of Contact Section -->
<!-- Start of Footer Section -->
<footer>
<p>Created with Love and Coffee</p>
<P>© All rights reservced by Kailash</P>
</footer>
<!-- End of Footer Section -->
</body>
</html>