-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
102 lines (96 loc) · 2.58 KB
/
form.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!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: 0;
padding: 0;
background-color: #f2f2f2;
}
.container {
max-width: 800px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #333;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
th, td {
padding: 8px;
border-bottom: 1px solid #ddd;
text-align: left;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<div class="container">
<h1>M.Ratna Priya</h1>
<p>Email: 21wh1a6632@bvrithyderabad.edu.in <br> Phone: 8498062024 <br> Address: Kukatpally, Hyd</p>
<h2>Education</h2>
<table>
<tr>
<th>Course</th>
<th>Year</th>
<th>College/School/Board</th>
<th>Percentage/CGPA</th>
</tr>
<tr>
<td>Bachelor of Technology (B.Tech)</td>
<td>2024</td>
<td>BVRIT College of Engineering for Women</td>
<td>6.7 CGPA</td>
</tr>
<tr>
<td>Intermediate (12th)</td>
<td>2021</td>
<td>Narayana Jr College</td>
<td>92%</td>
</tr>
<tr>
<td>High School (10th)</td>
<td>2019</td>
<td>Siddhartha High School</td>
<td>92%</td>
</tr>
</table>
<h2>Skills</h2>
<ul>
<li>Programming Languages: Java, Python, C</li>
<li>Web Development: HTML, CSS, JavaScript</li>
<li>Database Management: SQL</li>
</ul>
<h2>Projects</h2>
<ul>
<li>Developed a web-based chat application using Node.js and Socket.IO.</li>
<li>Created a CRUD application using Java and MySQL for managing student records.</li>
<li>Designed and implemented a responsive website for a local business using HTML, CSS, and JavaScript.</li>
</ul>
<h2>Hobbies</h2>
<ul>
<li>Reading</li>
<li>Playing basketball</li>
</ul>
<h2>Experience</h2>
<p>Intern, XYZ Company (June 2023 - August 2023)</p>
<ul>
<li>Assisted in developing a new feature for the company's website.</li>
<li>Participated in team meetings and brainstorming sessions.</li>
</ul>
</div>
</body>
</html>