-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (86 loc) · 3.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css" >
<title>BIO DATA</title>
</head>
<body>
<div class="border">
<header> <h3> BIO DATA </h4></header>
<div>
<div class="header"><h3>Personal Information</h4></div>
<div class="section flex">
<div class="info-section">
<div class="row"><h5 class="inline-block">Name : </h5> <p class="inline-block">Sachit Gupta</p> </div>
<div class="row"><h5 class="inline-block">Date of Birth : </h5> <p class="inline-block">24 Sep, 1999</p> </div>
<div class="row"><h5 class="inline-block">mob : </h5> <p class="inline-block">+91 9425803071</p> </div>
<div class="row"><h5 class="inline-block">email : </h5> <p class="inline-block">[email protected]</p> </div>
<div class="row"><h5 class="inline-block">address : </h5> <p class="inline-block">H. no. B-21, Priyadarshini Colony, Dumna Road, Jabalpur(482001), (M.P.)</p> </div>
</div>
<div class="img-div">
<img src="./src/Passport_Photograph.JPG"/>
</div>
</div>
<div class="header">
<h3>Education</h3>
</div>
<div class="section">
<table>
<tr>
<th>S. no.</th>
<th>Institute/College</th>
<th>Degree</th>
<th>Year of Passing</th>
<th>CGPA/% obtained</th>
</tr>
<tr>
<td>1.</td>
<td>Shri G. S. Institute of Technology and Science, Indore</td>
<td>B. Tech.</td>
<td>2021</td>
<td>8.4 CGPA</td>
</tr>
<tr>
<td>2.</td>
<td>Kendriya Vidyalaya CMM, Jabalpur</td>
<td>12th</td>
<td>2017</td>
<td>89.4 %</td>
</tr>
<tr>
<td>3.</td>
<td>Kendriya Vidyalaya CMM, Jabalpur</td>
<td>10th</td>
<td>2015</td>
<td>9.8 CGPA</td>
</tr>
</table>
</div>
<div class="header">
<h3>Experience</h3>
</div>
<div class="section">
<table>
<tr>
<th>S. no.</th>
<th>Organization</th>
<th>Designation</th>
<th>from</th>
<th>To</th>
</tr>
<tr>
<td>1.</td>
<td>Tata Consultancy Services Pvt.Ltd.</td>
<td>Assistant System Engineer - Trainee</td>
<td>29 Jul 2021</td>
<td>11 Oct 2022</td>
</tr>
</table>
</div>
</div>
</div>
<footer></footer>
</body>
</html>