-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResume.html
More file actions
73 lines (68 loc) · 1.79 KB
/
Copy pathResume.html
File metadata and controls
73 lines (68 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Name - Resume</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #e0f7fa; /* Light blue background */
margin: 20px;
line-height: 1.6;
}
h1, h2, h3 {
color: #333;
}
.container {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.photo {
flex: 0 0 150px;
margin-right: 20px;
}
.photo img {
border-radius: 50%;
width: 150px;
height: 150px;
}
.section {
margin-bottom: 20px;
border: 1px solid #ccc;
padding: 10px;
}
.contact-info {
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="photo">
<img src="your-photo.jpg" alt="Your Photo">
</div>
<div class="contact-info">
<p><h2>Rasal Rahman</h2></p>
<p>Email: rasalrahmankp@gmail.com</p>
<p>Phone: 9995176144</p>
<p>LinkedIn: linkedin.com/in/rasalrahman</p>
<p>Address: 123 Main St, Malappuram(dist.), Kerala(State) Pin=000000</p>
</div>
</div>
<div class="section education">
<h2>Education</h2>
<h3>BCA graduate</h3>
</div>
<div class="section skills">
<h2>Skills</h2>
<ul>
<li>Good at HTML, Python, Java, C++</li>
<li>Problem solving</li>
<li>Leadership</li>
<li>Research expertise</li>
</ul>
</div>
</body>
</html>