-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 882 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>My CV</title>
<style>
/* CSS styles for your CV */
body {
font-family: Arial, sans-serif;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
font-size: 24px;
}
p {
font-size: 16px;
}
/* Add more CSS styles as needed */
</style>
</head>
<body>
<div class="container">
<h1>My CV</h1>
<p><strong>Name:</strong> John Doe</p>
<p><strong>Email:</strong> [email protected]</p>
<p><strong>Education:</strong> Bachelor's Degree in Computer Science</p>
<p><strong>Experience:</strong> Web Developer at XYZ Company</p>
<p><strong>Skills:</strong> HTML, CSS, JavaScript, etc.</p>
<p><strong>Interests:</strong> Travel, Photography, Cooking</p>
<!-- Add more sections and content as needed -->
</div>
</body>
</html>