-
Notifications
You must be signed in to change notification settings - Fork 0
/
index3.html
171 lines (157 loc) · 7.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Portfolio Website - Easy Tutorials</title>
<link rel="stylesheet" href="styles2.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0-beta3/css/all.min.css" integrity="sha512-z+1yI7plH/b4fJjtDO9EMgXyRIqVSDxYlVhq5fdzYHR5A9WCSzUy/ea5uVu1K2u4CCS7wXTcTrlFANJajQ3R3A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div id="header">
<div class="container">
<nav>
<img src="logo.png" class="logo">
<ul id="sidemenu">
<li><a href="#header">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Interests</a></li>
<li><a href="#contact">Contact</a></li>
<i class="fas fa-times" onclick="closemenu()"></i>
</ul>
<i class="fas fa-bars" onclick="openmenu()"></i>
</nav>
<div class="header-text">
<p>CSE-Undergraduate</p>
<h1>Hi, I'm <span>Kavya</span> <br>from Hyderabad</h1>
</div>
</div>
</div>
<!-- --------about---- -->
<div id="about">
<div class="container">
<div class="row">
<div class="about-col-1">
<img src="bgk.png" alt="Kavya's Photo">
</div>
<div class="about-col-2">
<h1 class="sub-title">About me</h1>
<p>Greetings! My name is Kavya, and I'm delighted to share a little about myself with you. I was born and raised in the vibrant city of Hyderabad, a place that has not only shaped my character but also fostered my love for diversity and culture. Currently, I'm in the midst of an exciting journey as a third-year B.Tech student at CMR Institute of Technology, Hyderabad. Pursuing this degree has been a rewarding experience that's allowing me to explore my passion for technology and innovation. The campus environment, with its blend of academic excellence and extracurricular activities, has played a pivotal role in shaping my holistic growth.</p>
<!-- Tab Titles -->
<div class="tab-titles">
<p class="tab-links active-link" onclick="opentab('skills')">Skills</p>
<p class="tab-links" onclick="opentab('experience')">Experience</p>
<p class="tab-links" onclick="opentab('education')">Education</p>
</div>
<!-- Tab Contents -->
<div class="tab-contents active-tab" id="skills">
<ul>
<li><span>Python</span><br>Advanced</li>
<li><span>Java</span><br>Intermediate</li>
<li><span>C++</span><br>Intermediate</li>
</ul>
</div>
<div class="tab-contents" id="experience">
<ul>
<li><span>FullStack Intern At Swecha Summer Internship</span><br>Android Development</li>
</ul>
</div>
<div class="tab-contents" id="education">
<ul>
<li><span>B-Tech</span><br>CMR Institute of Technology With CGPA of 7.5</li>
<li><span>Intermediate</span><br>Infant Jesus Junior college with 784 Mark's</li>
<li><span>SSC</span><br>Infant Jesus International School with CGPA of 9.2</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- -------portfolio----- -->
<div id="portfolio">
<div class="container">
<h1 class="sub-title">Interests</h1>
<div class="work-list">
<div class="work">
<img src="work-1.png">
<div class="layer">
<h3>Coding</h3>
<p>I possess strong coding skills for problem-solving.</p>
<a href="#"><i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</div>
</div>
<div class="work">
<img src="work-2.png">
<div class="layer">
<h3>Problem solving</h3>
<p>I excel in problem-solving skills.</p>
<a href="#"><i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</div>
</div>
<div class="work">
<img src="work-3.png">
<div class="layer">
<h3>Web-designing</h3>
<p>I have a foundational understanding of web designing..</p>
<a href="#"><i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</div>
</div>
</div>
<a href="#" class="btn">See more</a>
</div>
</div>
<!-- -------contact---------- -->
<div id="contact">
<div class="container">
<div class="row">
<div class="contact-left">
<h1 class="sub-title">Contact me</h1>
<p><i class="fas fa-paper-plane"></i> [email protected]</p>
<div class="social-icons">
<a href="https://facebook.com/"><i class="fab fa-facebook"></i></a>
<a href="htpps://"><i class="fab fa-twitter-square"></i></a>
<a href=""><i class="fab fa-instagram"></i></a>
<a href=""><i class="fab fa-linkedin"></i></a>
</div>
<a href="https://drive.google.com/file/d/1DmxaVI7ton9EHidwH7YhDDK7DaONJZcD/view?usp=drivesdk" target="_blank">Download CV</a>
</div>
<div class="contact-right">
<form>
<input type="text" name="Name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="Message" rows="6" placeholder="Message"></textarea>
<button type="submit">Submit</button>
</form>
</div>
</div>
</div>
<div class="copyright">
<p>Copyright @ Kavya. Made with <i class="fas fa-heart"></i> by Easy Tutorials</p>
</div>
</div>
<script>
var tablinks = document.getElementsByClassName("tab-links");
var tabcontents = document.getElementsByClassName("tab-contents");
function opentab(tabname) {
for (tablink of tablinks) {
tablink.classList.remove("active-link");
}
for (tabcontent of tabcontents) {
tabcontent.classList.remove("active-tab");
}
event.currentTarget.classList.add("active-link");
document.getElementById(tabname).classList.add("active-tab");
}
</script>
<script>
var sidemenu = document.getElementById("sidemenu");
function openmenu() {
sidemenu.style.right = "0";
}
function closemenu() {
sidemenu.style.right = "-200px";
}
</script>
</body>
</html>