-
Notifications
You must be signed in to change notification settings - Fork 0
/
index3.html
174 lines (151 loc) · 4.6 KB
/
index3.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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
index3
<!DOCTYPE html>
<html>
<head>
<title>RAJESHWARI K- Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #e80b7a;
}
header {
background-color:#e30d7c;
color: #fff;
text-align: center;
padding: 2rem 0;
position: relative; /* Add this */
}
.header-content h1 {
font-size: 2.5rem;
}
nav {
background-color: #dad9e7;
color: #dfe3e3f2;
text-align: center;
}
nav ul {
list-style-type:none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 20px;
}
nav ul li a {
text-decoration: none;
color: #0c0c0c;
}
.section-content {
background-color: #dad9e7;
padding: 2rem;
margin: 1rem;
border-radius: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.download-button {
background-color: #0b056b;
color: #fff;
padding: 0.5rem 1rem;
text-decoration: none;
border-radius: 20px;
display: inline-block;
margin-top: 10px;
}
.download-button:hover {
background-color:rgb(12, 201, 201);
}
footer {
text-align: center;
padding: 1rem 0;
background-color: #333;
color: #c7cfdb;
}
ul {
list-style-type: square;
padding-left: 20px;
}
</style>
</head>
<body>
<header>
<div class="header-content">
<h1>RAJESHWARI K</h1>
<p>Passionate Computer Technology Student</p>
</div>
</header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#achievements">Achievements</a></li>
<li><a href="#resume">Resume</a></li>
</ul>
</nav>
<section id="about">
<div class="section-content">
<h2>About Me</h2>
<p> Seeking a challenging position in reputed organization where to implement learned skills and to expand
knowledge by leverage learnings.</p>
</div>
</section>
<section id="education">
<div class="section-content">
<h2>Currently pursuing final year of B.Sc COMPUTER TECHNOLOGY
</h2>
<p>KG COLLEGE OF ARTS AND SCIENCE</p>
</div>
</section>
<section id="skills">
<div class="section-content">
<h2>Skills</h2>
<ul>
<li>C programming</li>
<li>c++ Programming</li>
<li>Java</li>
<li>Linux</li>
<li>MS Word</li>
</ul>
</div>
</section>
<section id="achievements">
<div class="section-content">
<h2>Achievments</h2>
<ul>
<li>Created an Website about Bike and Publishe.</li>
<li>Developing AR/VR/MR/XR Apps with WebXR,Unity & Unreal</li>
<li>CS50 course of python, Including nine problems & One final project. Awarded from Cambridge in 2022 for CS50..</li>
</ul>
</div>
</section>
<section id="resume">
<center>
<div class="section-content">
<h2>Resume</h2>
<a href="Ramya2.pdf" class="download-button">Download</a>
</div>
</center>
</section>
<footer>
<p>© RAJESHWARI</p>
</footer>
<script>
// Smooth scrolling to section when clicking on navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href').substring(1);
const targetElement = document.getElementById(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop,
behavior: 'smooth'
});
}
});
});
</script>
</body>
</html>