-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
145 lines (140 loc) · 5.11 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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<style>
body {
background-color: black;
text-align: center;
color: white;
font-family: Arial, Helvetica, sans-serif;
}
table > tbody > tr > td{
border:1px solid rgb(223, 113, 50);
padding: 5px;
vertical-align: middle;
}
.td1{
text-align: -webkit-left;
}
</style>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8" style="width: 15em;
border: 1px solid rgba(56, 27, 122, 0.521);
box-shadow: 8px 8px 5px rgb(153, 145, 167);
padding: 8px 12px;
background-image: linear-gradient(180deg, #fff, #ddd 40%, #ccc);">
<table style="width:100%;">
<tr style="text-align:center;">
<td style="padding-right: 10px;"><img src="assets/Karan-profile.png" width="250" alt="Karan Profile Picture"></td>
<td class="td1">
<h1>Karan Shinde</h1>
<p><em>Software Engineer at <strong> <a href="https://new.siemens.com/in/en.html"> Siemens India Pvt Ltd.</a> </strong> From Last 3 Years.</em></p>
<p><em>I am an <strong><a href="https://en.wikipedia.org/wiki/Web_developer"> Web Developer</a></strong>. I love To <strong> Travel</strong> and <strong>Play Badminton</strong>.</em></p>
<p><em>I have Completed <strong> MCA</strong> from <strong><a href="http://www.sinhgad.edu/">Sinhgad Institutes.</a></strong></em></p>
</td>
</tr>
</table>
<hr style="background-color:dimgray;height:2px;">
<h3>Work History</h3>
<ul>
<li>FS20 Project</li>
<li>Zone Control Unit</li>
<li>SiQuote</li>
<li>CET</li>
<li>Panaroma</li>
<li>Product Promotion Tool</li>
<li>Event Management</li>
</ul>
<hr style="background-color:dimgray;height:2px;">
<h3>Education History</h3>
<table>
<thead>
<th style="padding-right: 30px;">Passout Year</th>
<th style="padding-right: 30px;"> Education Type</th>
<th>School/College Name</th>
</thead>
<tbody>
<tr>
<td>2009</td>
<td>Priamary Education</td>
<td>Dnyanesh Vidya Mandir.Sambhajinagar</td>
</tr>
<tr></tr>
<tr></tr>
<tr>
<td>2011</td>
<td>Higher Secondary Education</td>
<td>Mansing Pawar College,Sambhajinagar</td>
</tr>
<tr></tr>
<tr></tr>
<tr>
<td>2014</td>
<td>Graduation</td>
<td>Vivekanand College</td>
</tr>
<tr>
<td>2017</td>
<td>Post Graduation</td>
<td>Sinhgad Institute of Management</td>
</tr>
</tbody>
</table>
<hr style="background-color:dimgray;height:2px;">
<h3>My Hobbies</h3>
<ol>
<li>Play Badminton</li>
<li>Watching Movies</li>
<li>Coding</li>
<li>Swimming</li>
</ol>
<hr style="background-color:dimgray;height:2px;">
<h3>Skills</h3>
<table>
<tr>
<td>
<table>
<tr>
<td>Angular</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Web Devlopement</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td>UI Devolopment</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>Database</td>
<td>⭐⭐</td>
</tr>
</table>
</td>
</tr>
</table>
<hr style="background-color:dimgray;height:2px;">
<h5>Contact Me</h5>
<ul>
<li>Email:karanshinde8282@gmail.com</li>
<li>Mobile No.:9807456532</li>
</ul>
</div>
<div class="col-md-2"></div>
</div>
</body>
</html>