-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
152 lines (139 loc) · 5.27 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
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<link rel="stylesheet" href="style.css">
<style type="text/css">
.box-container{
}
.box-container div{
border: 1px solid black;
display: flex;
flex-direction: row;
height: 500px;}
}
</style>
</head>
<body>
<div id="out">
<center><h1>My Website</h1></center>
<div id="child">
<img src="pri.jpg" alt="Image not supported" width="125" height="150">
</div>
</div>
<div class="box-container">
<div id="container0"><h3>Personal Details:</h3></div>
<div id="box0">
<ul>
<li> <b>Name:</b> Priyanka Shahane <br></li>
<li><b>Address:</b> Minakshi Apartment, Scheme 11, Sector 21, Yamunanagar, Nigadi, Pune 411044<br></li>
<li><b>Mobile:</b> 7796831759<br></li>
<li><b>Email:</b> [email protected]<br></li>
<li><b>DOB:</b> 03/06/1996<br></li>
</ul>
</div>
<div id="container1"><h3>Education:</h3></div>
<div id="box1">
<table border="1">
<tr>
<th>
College name
</th>
<th>
Course name
</th>
<th>
Percentage/CGPA
</th>
<th>
Certificates
</th>
</tr>
<tr>
<td>P.E.S. Modern College of Engineering</td>
<td> M.E. (Computer)</td>
<td> 8.68 CGPA</td>
<td><a href="ME.jpg">M.E. Marklist</a></td>
</tr>
<tr>
<td>N.B.N. Sinhagad School of Engineering</td>
<td> B.E. (Computer)</td>
<td> 68.20 %</td>
<td><a href="BE.jpg">B.E. Marklist</a></td>
</tr>
<tr>
<td>H.H.C.P. Jr. College</td>
<td> H.H.C.</td>
<td> 58.20 %</td>
<td><a href="12.jpg">H.S.C Marklist</a></td>
</tr>
<tr>
<td>Modern High School</td>
<td>S.S.C.</td>
<td> 86.91 %</td>
<td><a href="10.jpg">S.S.C Marklist</a></td>
</tr>
</table>
</div>
<div id="container2"><h3>Trainings:</h3></div>
<div id="box2">
<table border="1">
<tr>
<th>
Technology
</th>
<th>
Organization
</th>
</tr>
<tr>
<td>HTML & CSS
</td>
<td>Udemy</td>
</tr>
<tr>
<td>Web Development</td>
<td>Udemy</td>
</tr>
<tr>
<td>Mathematical Modeling in Engineering Discipline</td>
<td>IEEE Signal Processing Society Chapter</td>
</tr>
<tr>
<td>Python Workshop</td>
<td>IBNC INDIA and I-Medita Learning Solutions</td>
</tr>
<tr>
<td>PHP and MySQL Training</td>
<td>Spoken Tutorial Project by IIT</td>
</tr>
<tr>
<td>Web Arch Seminar</td>
<td>Sinhagad Karandak</td>
</tr>
<tr>
<td>C Training</td>
<td>C++ Training</td>
</tr>
</table>
</div>
<div id="container3"><h3>Other details:</h3></div>
<div id="box3">
<ol>
<li>Published a research paper at IJARCCE.</li>
<li>Published manuscript at IRJET.</li>
<li>Worked as volunteer at Sinhgad Karandak 2017 (Neon).</li>
<li>Participated in Paper Presentation Event at Sinhgad Karandak 2016 (Techtonic).</li>
<li>Participated in Socio Tech event at Sinhgad Karandak 2016 (Techtonic).</li>
<li>Participated in C talent hunt event at Sinhgad Karandak 2015 (Techtonic).</li>
<li>MS-CIT (Score : 95/100)</li>
<li>Participated 'Sprit of Yoga' Suryanamaskar Competition by 'Art of Living'.</li>
<li>Published research paper at IJRDT.</li>
<li>Attended the 7 th Post Graduate Conference of Computer Engineering (cPGCON) 2018.</li>
<li>Presented research paper at cPGCON 2019.</li>
<li>Published research paper at IJMTE.</li>
<li>Published research paper at JETIR.</li>
</ol>
</div>
</body>
</html>