-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv-css.html
More file actions
111 lines (97 loc) · 3.4 KB
/
cv-css.html
File metadata and controls
111 lines (97 loc) · 3.4 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Resume With CSS</title>
<link rel="stylesheet" href="styles.css"/>
<!-- Awesome font -->
<script src="https://kit.fontawesome.com/a508a51525.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="box">
<div class="header">
<div class="left-header">
<div class="name">
<h1 class="first-name"><b>Hitesh</b></h1>
<h1 class="last-name"><b>Date</b></h1>
</div>
<div class="pic">
<img src="me.jpg" width="100" height="110" hspace="" align="">
</div>
</div>
<div class="right-header">
<div class="address">
<p>Kamothe, Navi Mumbai, Maharashtra, India</p>
<i class="fas fa-address-card"></i>
</div>
<div class="email">
<p>datehibh19ie@student.mes.ac.in</p>
<i class="fas fa-envelope"></i>
</div>
<div class="phone">
<p>8104816487</p>
<i class="fas fa-phone"></i>
</div>
</div>
<hr>
<div class="Objective">
<div class="obj-head grey">
<i class="fas fa-bullseye"></i>
<h2>Career Objective</h2>
</div>
<p>An engineering student seeking an entry level opportunity in an esteemed organization.<br>
To Succeed in an environment of growth and excellence and earn a job which provides me job satisfaction and self development and help me achieve personal as well as organization goals.</p>
</div>
<div class="education">
<div class="edu-head grey">
<i class="fas fa-book-open"></i>
<h2>Academic Qualification</h2>
</div>
<table>
<tr>
<th>Qualification</th>
<th>Board/University</th>
<th>School/College</th>
<th>Year of passing</th>
<th>Marks</th>
</tr>
<tr>
<td>B.E</td>
<td>Mumbai University</td>
<td>Pillai College Of Engineering, New Panvel</td>
<td>2023</td>
<td>9.2 CGPA</td>
</tr>
<tr >
<td>HSC</td>
<td>State Board of Secondary Education</td>
<td>MAHATMA EDUCATION SOCIETY, KHANDA COLONY</td>
<td>2019</td>
<td>80</td>
</tr>
<tr >
<td>SSC</td>
<td>State Board of Secondary Education</td>
<td>M.U.M ENGLISH SCHOOL , KAMOTHE</td>
<td>2017</td>
<td>92</td>
</tr>
</table>
</div>
<div class="skills">
<div class="skill-head grey">
<i class="fas fa-tools"></i>
<h2>Skills</h2>
</div>
<ul style="list-style-type:square">
<li>Python</li>
<li>C programming</li>
<li>HTML, CSS</li>
<li>MySQL</li>
<li>Mathematics</li>
</ul>
</div>
</body>
</html>