-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (101 loc) · 3.51 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
<!DOCTYPE html>
<html>
<head>
<title>It's me</title>
<link rel="icon" href="img.jpg" type="image/x-icon">
<link rel="stylesheet" href="index.css">
</head>
<body>
<!-- Header session: all link to reach me -->
<header>
<h1>Lokendra Bhat</h1>
<section>
<a href="mailto:[email protected]">[email protected]</a>
<a href="https://www.facebook.com/lokendra.bhat.90" target="_blank">Facebook</a>
<a href="https://www.linkedin.com/in/lokendra-bhat-bb2b6b24a/" target="_blank">LinkedIn</a>
<a href="https://github.com/LokendraBhat" target="_blank">GitHub</a>
<a href="https://www.credly.com/users/lokendra-bhat/badges">Credly</a>
</section>
</header>
<!-- About session: General description -->
<section>
<h2>About me</h2>
<p class="summary"><img src="img.jpg"
alt="Loading...">
I am an IT student willing to pursue a rewarding career.
<strong>"Success is not final, failure is not fatal"</strong>
My ambition is to learn more and more I don't care if
I fail or succeed, <strong>never give up</strong>.
</p>
</section>
<!-- Education session: Academic detail -->
<section>
<h2>Education</h2>
<ul id="experience">
<li>
<b> B.Sc. CSIT - ASCOL</b> | 2019 - Present
</li>
<li>
<b> Science - Radiant</b> | 2017 - 2019
</li>
</ul>
</section>
<!-- Certification session: my certificate and training -->
<section>
<h2>Certification and Training</h2>
<ul id="experience">
<li>
<b> AWS Certified Cloud Practitioner</b> | Jul 21, 2023
</li>
<li>
<b> AWS Re/Start Training </b> | 2023
</li>
</ul>
</section>
<!-- Skill session: Skill highlight -->
<section>
<h2>Skills</h2>
<ul id="skills">
<li>HTML</li>
<li>CSS</li>
<li>JS</li>
<li>Linux</li>
<li>SQL</li>
<li>JQuery</li>
<li>Python</li>
<li>PHP</li>
</ul>
<h2>Tools</h2>
<ul id="skills">
<li>Git and GitHub</li>
<li>AWS tool</li>
</ul>
</section>
<!-- Project session: Project detail -->
<!-- <section>
<h2>Projects</h2>
<ul id="projects">
<li>
<a href="#"></a>
</li>
</ul>
</section> -->
<!-- Contact form session: Not completed!!! Idea of submit comment -->
<section>
<h2>Contact Form</h2>
<form id="contact-form">
<label for="name">Name: </label><input placeholder="Name" id="name" type="text" /><br>
<label for="email">Email: </label><input placeholder="Email" id="email" type="email" /><br>
<textarea placeholder="Message" id="message"></textarea><br>
<button type="submit" class="btn">SEND</button>
<button type="reset" class="btn">RESET</button>
</form>
<!-- <h2>Comment</h2>
<div id="comment"></div> -->
</section>
<!-- Footer session: Footer view -->
<footer>
<p id="copyright">Copyright © Lokendra Bhat</p>
</footer>
</body>
</html>