-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb.html
More file actions
133 lines (121 loc) · 3.37 KB
/
web.html
File metadata and controls
133 lines (121 loc) · 3.37 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>My Resume Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
}
header {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
}
header h1 {
margin: 0;
}
section {
padding: 20px;
margin: 10px;
background-color: white;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
color: #333;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 10px 0;
}
footer {
text-align: center;
padding: 10px;
background-color: #333;
color: white;
position: fixed;
width: 100%;
bottom: 0;
}
.contact-form {
display: flex;
flex-direction: column;
}
.contact-form input,
.contact-form textarea {
margin-bottom: 10px;
padding: 10px;
font-size: 16px;
border: 1px solid #ddd;
border-radius: 4px;
}
.contact-form button {
padding: 10px;
background-color: #333;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
.contact-form button:hover {
background-color: #555;
}
</style>
</head>
<body>
<header>
<h1>Sandhya B</h1>
<p><b> Resume </b></p>
<p>Web Developer | Programmer</p>
<p>Email:sandy20ammu05@gmail.com | LinkedIn:https://www.linkedin.com/in/sandhya-baskar-113aa1357/</p>
</header>
<section>
<h2>Profile Info</h2>
<p>I'm Sandhya B. I'm from Coimbatore. I persuaded my 12th in Sree Dharamasastha Matric.Hr.Sec.School. I'm persuating my Bachelor of Computer Applications in KG College of Arts and Science. I'm a passionate web developer with a focus on front-end technologies. I enjoy solving problems and building engaging, user-friendly websites.</p>
</section>
<section>
<h2>Skills</h2>
<ul>
<li> > HTML, CSS, JavaScript</li>
<li> > React, Node.js</li>
<li> > Git, GitHub</li>
<li> > Responsive Web Design</li>
<li> > SQL & NoSQL Databases</li>
</ul>
</section>
<section>
<h2> Languages</h2>
<p>English</p>
<p>Tamil</p>
</section>
<section>
<h2>Education</h2>
<h3> Bachelor of Computer Applications - KG College of Arts and Science</h3>
<p>Graduating: May 2026</p>
</section>
<section>
<h2>Percentage</h2>
<h3>12th Mark and Percentage</h3>
<p> 487/600 - 80% </p>
<h3>UG Overall Percentage</h3>
<p> 76.80% </p>
</section>
<section>
<h2>Personal Details</h2>
<p><b>Contact:</b></p>
<p>8220266100</p>
<p><b>Email ID</b></p>
<p>sandy20ammu05@gmail.com</p>
</section>
</body>
</html>