-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBootCamp.html
69 lines (62 loc) · 1.67 KB
/
BootCamp.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
<!DOCTYPE html>
<!-- Web Dev Bootcamp -->
<html>
<!-- head -->
<head>
<title>Resume</title>
<style type="text/css">
h2,h1,p{
color: blue;
}
#dob{
border:dashed violet;
color: red;
}
.fun{
color: rgb(120,67,130);
text-align: right;
}
/**{
text-align: center;
}*/
.section{
background-color: rgb(30,87,67);
padding:30px 20px;
}
</style>
</head>
<!-- body -->
<body style="background-color:lightblue">
<div class="section">
<h1 class="fun">RESUME</h1>
<h2>John Doe</h2>
<p><i> Web Develepor</i></p>
<a href="https://www.linkedin.com/in/ashly-elizabeth-sunny-6a50721ab/">LinkedIn Profile</a></br>
<br/>
<p id="dob"> <strong>Birth Date </strong> :09/09/2001</p>
<p> <strong>Address:</strong> Abc street,789312</p>
<p> <strong>Phone:</strong> 8129595788</p>
<p> <strong>Email:</strong> [email protected]</p><br>
</div>
<img src="john.jpg" alt="image unavailable" width="100" height="150">
<h2>Professional Experiences</h2>
<ul>
<li><h3 style="background-color:red">Web producer</h3></li>
<p class="fun">Lenovo. from 2015 to 2018</p>
<p>
<!-- emphasis -->
<em>As a producer.</em><br>I coordinated the production team in order to keep all the content up to date.
</p>
</ul>
<h2> Education </h2>
<ul>
<li><h3>UG from Kerala technological university</h3></li>
<p>Graduation in computer science and engineering. from 2011 to 2015</p>
</ul>
<h2> Languages </h2>
<ul>
<li>English</li>
<li>Arabic</li>
</ul>
<body>
</html>