-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (103 loc) · 2.31 KB
/
Copy pathindex.html
File metadata and controls
111 lines (103 loc) · 2.31 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">
<title>My CV</title>
<style>
body {
background-color: #F5F5F5;
font-family: Arial, sans-serif;
}
header {
background-color: #808080;
color: #FFFFFF;
padding: 20px;
text-align: center;
}
h1 {
font-size: 36px;
margin-bottom: 10px;
}
h2 {
font-size: 24px;
margin-top: 30px;
}
p {
font-size: 18px;
line-height: 1.5;
margin: 10px 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
}
.section {
background-color: #FFFFFF;
border: 1px solid #D3D3D3;
margin-bottom: 20px;
padding: 20px;
}
.section h2 {
margin-top: 0;
}
</style>
</head>
<body>
<header>
<h1>My Name</h1>
<p>Job Title</p>
</header>
<div class="section">
<h2>Contact Information</h2>
<ul>
<li>Address: 123 Main St, Anytown, USA</li>
<li>Phone: (123) 456-7890</li>
<li>Email: myemail@example.com</li>
<li>Website: mywebsite.com</li>
</ul>
</div>
<div class="section">
<h2>Summary</h2>
<p>A brief summary of your skills, experience, and career goals.</p>
</div>
<div class="section">
<h2>Experience</h2>
<ul>
<li>
<h3>Job Title</h3>
<p>Company Name | Dates of Employment</p>
<ul>
<li>Responsibility 1</li>
<li>Responsibility 2</li>
<li>Responsibility 3</li>
</ul>
</li>
<li>
<h3>Job Title</h3>
<p>Company Name | Dates of Employment</p>
<ul>
<li>Responsibility 1</li>
<li>Responsibility 2</li>
<li>Responsibility 3</li>
</ul>
</li>
</ul>
</div>
<div class="section">
<h2>Education</h2>
<ul>
<li>
<h3>Degree Name</h3>
<p>University Name | Dates of Attendance</p>
</li>
<li>
<h3>Degree Name</h3>
<p>University Name | Dates of Attendance</p>
</li>
</ul>
</div>
</body>
</html>