-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (91 loc) · 4.24 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Website</title>
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<nav class="navbar">
<ul>
<li><a href="#home">HOME</a></li>
<li><a href="#about">ABOUT</a></li>
<li><a href="#education">EDUCATION</a></li>
<li><a href="#contact">CONTACT</a></li>
</ul>
</nav>
<section id="home">
<div class="main">
<h1 class="headings">Hi, I am</h1>
<h1 class="headings1">Harshitha D</h1> <br>
<h3>Associate Software Engineering Intern</h3><br>
<h3>at Contentstack</h3><br>
<button class="btn" target="_blank" href="https://drive.google.com/open?id=1MOjaP1eaGpZwpayyMsBvc4g89SW85G3V">
Resume
</button>
</div>
</section>
<section id="about">
<h2 class="headings">ABOUT ME</h2>
<div id="pic">
<img src="imgs/profile.png">
<div id="intro">
<h2 style="font-size: xx-large">Where am I from?</h2> <br>
<p style="font-size: x-large;">I was born in Hassan, brought up in Bengaluru and I studied there till 12th and I'm currently studying in Mysuru.</p><br>
<h2 style="font-size: xx-large">My hobbies:</h2> <br>
<p style="font-size: x-large;">I read digital comics and listen k-pop. Apart from these I'm good at writing Calligraphy.</p><br>
<h2 style="font-size: xx-large">Sports:</h2> <br>
<p style="font-size: x-large;">Throwball, Kabaddi.</p><br>
<p style="font-size: x-large;"></p><br>
</div>
</div>
</section>
<section id="education">
<h2 class="headings">EDUCATION</h2>
<div class="row">
<div class="box">
<h5 class="headings2">B.E.</h5>
<p style="font-size:larger;">I am pursuing my Bachelor's Degree in
Information Science & Engineering at
<a href="https://geethashishu.in" class="edu"> GSSSIETW</a>, Mysuru.
<br><br><b>Year:</b>2019-2023 <br>
<br><b>CGPA:</b>8.54
</p>
</div>
<div class="box">
<h5 class="headings2">12th State</h5>
<p style="font-size:larger;">I have complete my 12th std from
<a href="https://deekshalearning.com/college/mahalakshmipuram-bengaluru/" class="edu">
KMWA PU College</a>, (Deeksha Campus) Bangalore.
<br><br><b>Year:</b>2019 <br>
<br><b>Percentage:</b>82.50
</p>
</div>
<div class="box">
<h5 class="headings2">10th ICSE</h5>
<p style="font-size:larger;">I have completed my 10th std from
<a href="https://www.gangainstitution.com" class="edu">Ganga International School</a>, Bangalore.
<br><br><b>Year:</b>2017 <br>
<br><b>Percentage:</b>87.40
</p>
</div>
</div>
</section>
<section id="contact">
<div class="contact_details"> <br>
<h2 class="headings">Contact Details</h2> <br>
<div class="contact-icons">
<a href="https://github.com" target="_blank"><i class="fa fa-github"></i></a>
<a href="https://www.linkedin.com" target="_blank"><i class="fa fa-linkedin"></i></a>
<a href="https://www.facebook.com" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="https://twitter.com" target="_blank"><i class="fa fa-twitter"></i></a>
</div> <br>
</div>
</section>
</body>
</html>