forked from aditihonagekar/web-technology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
6_resume.html
79 lines (75 loc) · 2.32 KB
/
6_resume.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Resume</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2, h3 {
color: #007bff;
}
p {
line-height: 1.6;
}
.section {
margin-bottom: 20px;
}
.section:last-child {
margin-bottom: 0;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>John Doe</h1>
<p>Email: john@example.com</p>
<p>Phone: (123) 456-7890</p>
</header>
<section class="section">
<h2>Summary</h2>
<p>A dedicated and hardworking individual with a passion for web development. Experienced in HTML, CSS, and JavaScript. Strong problem-solving skills and ability to work in a team environment.</p>
</section>
<section class="section">
<h2>Education</h2>
<h3>Bachelor of Science in Computer Science</h3>
<p>University of Example, 2014-2018</p>
</section>
<section class="section">
<h2>Experience</h2>
<h3>Web Developer</h3>
<p>ABC Company, 2018-2022</p>
<p>Responsibilities:</p>
<ul>
<li>Developed and maintained company website</li>
<li>Collaborated with design team to implement new features</li>
<li>Optimized website performance and user experience</li>
</ul>
</section>
<section class="section">
<h2>Skills</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Responsive Design</li>
<li>Problem Solving</li>
</ul>
</section>
</div>
</body>
</html>