-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5.html
75 lines (64 loc) · 1.7 KB
/
5.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
text-align: center; /* Center the content */
}
h1 {
text-align: center;
}
section {
margin-bottom: 20px;
}
h2 {
color: #4CAF50;
}
p {
margin-bottom: 8px;
}
ul {
list-style-type: none;
padding: 0;
}
li::before {
content: "\2022";
color: #4CAF50;
display: inline-block;
width: 1em;
margin-left: -1em;
}
</style>
</head>
<body>
<h1>Resume</h1>
<section>
<h2>Personal Information</h2>
<p><strong>Name:</strong> Shaik Shafi</p>
<p><strong>Email:</strong> [email protected]</p>
<p><strong>Phone:</strong> +91 86862 441556</p>
<p><strong>Address:</strong> Hyderabad, Telangana, India</p>
</section>
<section>
<h2>Education</h2>
<ul>
<li><strong>Methodist College of Engineering and Technology</strong></li>
<li>Bachelor of Science in Computer Science Engineering</li>
<li>Graduation Year: 2024</li>
</ul>
</section>
<section>
<h2>Skills</h2>
<ul>
<li>Programming Languages: Java, Python, GO</li>
<li>Web Development: HTML, CSS, React, Node.js</li>
<li>Database Management: MySQL, MongoDB</li>
</ul>
</section>
</body>
</html>