-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
246 lines (242 loc) · 8.53 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
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="img/favicon1 (1).png" />
<title>Personal Portofolio</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- nav bar -->
<nav class="navbar">
<ul class="link-group">
<li class="link active"><a href="#">Home</a></li>
<li class="link"><a href="#">Projects</a></li>
<li class="link"><a href="#">about</a></li>
<li class="link"><a href="#">Contacts</a></li>
</ul>
</nav>
<!-- home section -->
<section class="home-section active">
<h1 class="hero-heading">Hey, i am<br />Karthick;)</h1>
<img src="img/home.png" class="home-image" />
</section>
<!-- project section -->
<section class="project-section">
<h1 class="project-heading">Some of my projects</h1>
<div class="project-container">
<div class="project-card">
<img src="img/project-1.png" class="project-img" alt="" />
<div class="project-content">
<h1 class="project-title">Project 01</h1>
<p class="project-info">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Natus
sapiente placeat tempora, dolor qui sed mollitia minus animi
dolore nulla?
</p>
<div class="project-btn-grp">
<button class="project-btn github">github repo</button>
<button class="project-btn live">github live</button>
</div>
</div>
</div>
<div class="project-card">
<img src="img/project-2.png" class="project-img" alt="" />
<div class="project-content">
<h1 class="project-title">Project 02</h1>
<p class="project-info">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Natus
sapiente placeat tempora, dolor qui sed mollitia minus animi
dolore nulla?
</p>
<div class="project-btn-grp">
<button class="project-btn github">github repo</button>
<button class="project-btn live">github live</button>
</div>
</div>
</div>
<div class="project-card">
<img src="img/project-3.png" class="project-img" alt="" />
<div class="project-content">
<h1 class="project-title">Project 03</h1>
<p class="project-info">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Natus
sapiente placeat tempora, dolor qui sed mollitia minus animi
dolore nulla?
</p>
<div class="project-btn-grp">
<button class="project-btn github">github repo</button>
<button class="project-btn live">github live</button>
</div>
</div>
</div>
<div class="project-card">
<img src="img/project-4.png" class="project-img" alt="" />
<div class="project-content">
<h1 class="project-title">Project 04</h1>
<p class="project-info">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Natus
sapiente placeat tempora, dolor qui sed mollitia minus animi
dolore nulla?
</p>
<div class="project-btn-grp">
<button class="project-btn github">github repo</button>
<button class="project-btn live">github live</button>
</div>
</div>
</div>
</div>
</section>
<!-- about section -->
<section class="about-section">
<!-- starwars_music -->
<!-- <embed src="Mp3/StarWars.wav" loop="true" autostart="true" width="2"
height="0"> -->
<audio id="audio" src="Mp3/StarWars.wav"></audio>
<div class="about">
<div class="about-img-container">
<img src="img/home.png" class="about-img" alt="" />
<button
class="download-cv-btn"
onclick="DownloadFile('Karthick_Resume.pdf')"
>
download cv
</button>
</div>
<p class="about-info">
Hello there, I'm Karthick Srinivasan. I'm a Full Stack Developer
Currently Working at National Informatics Center Bangalore.
</p>
</div>
<!-- skills -->
<div class="skill-section">
<h1 class="heading">Skills</h1>
<div class="skills-container">
<div class="skill-card">
<img src="img/html.png" class="skill-img" alt="" />
<!-- <div class="skill-level">98%</div> -->
<h1 class="skill-name">HTML</h1>
<p class="skill-info"></p>
</div>
<div class="skill-card">
<img src="img/css.png" class="skill-img" alt="" />
<!-- <div class="skill-level">98%</div> -->
<h1 class="skill-name">CSS</h1>
<p class="skill-info"></p>
</div>
<div class="skill-card">
<img src="img/js.png" class="skill-img" alt="" />
<!-- <div class="skill-level">98%</div> -->
<h1 class="skill-name">Js</h1>
<p class="skill-info"></p>
</div>
<div class="skill-card">
<img src="img/nodejs.png" class="skill-img" alt="" />
<!-- <div class="skill-level">98%</div> -->
<h1 class="skill-name">nodeJs</h1>
<p class="skill-info"></p>
</div>
<div class="skill-card">
<img src="img/reactjs.png" class="skill-img" alt="" />
<!-- <div class="skill-level">98%</div> -->
<h1 class="skill-name">ReactJs</h1>
<p class="skill-info"></p>
</div>
</div>
</div>
<!-- timeline -->
<div class="timeline">
<h1 class="heading">education and experience</h1>
<div class="card">
<div class="card-body">
<h1 class="card-title">March 2021-present</h1>
<p class="card-detail">
Dot Net Full stack Developer at National Informatics Center
Bangalore
</p>
</div>
</div>
<div class="card">
<div class="card-body">
<h1 class="card-title">May 2020- October 2020</h1>
<p class="card-detail">Market Research Intern at Draup</p>
</div>
</div>
<div class="card">
<div class="card-body">
<h1 class="card-title">2016-2021</h1>
<p class="card-detail">
Electronics Communication Engineering at Rvs College of
Engineering and Technology, Coimbatore
</p>
</div>
</div>
<div class="card">
<div class="card-body">
<h1 class="card-title">2015-2016</h1>
<p class="card-detail">
Don Bosco Matriculation Higher secondary School.
</p>
</div>
</div>
</div>
<div>
<button
id="btnPlay"
onclick="play()"
class="Audio-btn"
value="STARWARS BUTTON"
>
STARWARS
</button>
</div>
</section>
<!-- contact section -->
<section class="contact-section">
<form
name="contact"
method="POST"
data-netlify="true"
class="contact-form"
>
<input
type="text"
name="name"
id="name"
autocomplete="off"
placeholder="name"
/>
<input
type="text"
name="email"
id="email"
autocomplete="off"
placeholder="email"
/>
<textarea
name="msg"
id="msg"
placeholder="message"
autocomplete="off"
></textarea>
<div class="field">
<div class="Recaptcha" data-netlify-recaptcha="true">
<!-- <h4>asdfasf</h4>-->
</div>
</div>
<button type="submit" class="form-submit-btn">Contact</button>
</form>
<!-- maps -->
<div class="map">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d15554.995549964915!2d77.60927493577209!3d12.923854560040931!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bae1458e6baac69%3A0x1d02c77cc85211ed!2sMadiwala%2C%201st%20Stage%2C%20BTM%20Layout%2C%20Bengaluru%2C%20Karnataka!5e0!3m2!1sen!2sin!4v1641062670430!5m2!1sen!2sin"
width="600"
height="450"
style="border: 0"
allowfullscreen=""
loading="lazy"
></iframe>
</div>
</section>
<script src="app.js"></script>
</body>
</html>