-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (134 loc) · 5.23 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="wdth=device-width, initial-scale=1.0"/>
<title>My Portfolio</title>
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="mediaqueries.css"/>
</head>
<body>
<nav id="desktop-nav">
<div class="logo">Nithya N Nagaraja</div>
<div>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#certifications">Certifications</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<nav id="hamburger-nav">
<div class="logo">Nithya N Nagaraja</div>
<div class="hamburger-menu">
<div class="hamburger-icon" onclick="toggleMenu()">
<span></span>
<span></span>
<span></span>
</div>
<div class="menu-links">
<li><a href="#about" onclick="toggleMenu()">About</a></li>
<li><a href="#experience" onclick="toggleMenu()">Experience</a></li>
<li><a href="#projects" onclick="toggleMenu()">Projects</a></li>
<li><a href="#certifications" onclick="toggleMenu()">Certifications</a></li>
<li><a href="#contact" onclick="toggleMenu()">Contact</a></li>
</div>
</div>
</nav>
<section id="profile">
<div class="section__pict-container">
<img src="./assets/profile-pic.jpg" alt="Jane Doe profile pic">
</div>
<div class="section__text">
<p class="section_text_p1">Hello, I'm</p>
<h1 class="title">Nithya N Nagaraja</h1>
<p class="section_text_p2">Software Engineer</p>
<div class="btn-container">
<button
class="btn btn-color-2"
onclick="window.open('./assets/resume.pdf')">
Download CV
</button>
<button
class="btn btn-color-1"
onclick="location.href='./#contact'">
Contact info
</button>
</div>
<div id="socials-container">
<img src="./assets/linkedin.png" alt="My LinkedIn Profile"
class="icon" onclick="location.href='https://www.linkedin.com/in/nithya-niranjani-n-87b08a15b/'"
/>
<img src="./assets/github.png" alt="My Github Profile"
class="icon" onclick="location.href='https://www.github.com/NithyaNN3/'"
/>
</div>
</div>
</section>
<section id="about">
<p class="section__text__p1"> Get to know more</p>
<h1 class="title"> About Me</h1>
<div class="section-container">
<div class="section__pic-container">
<img
src="./assets/about-me.jpg"
alt="Profile picture"
class="about-pic"
/>
</div>
<div class="about-details-container">
<div class="about-container">
<div class="details-container">
<img src="./assets/experience.png"
alt="experience-icon"
class="icon"
/>
<h3>Experience</h3>
<p>2+ years <br /> Developer</p>
</div>
<div class="details-container">
<img
src="./assets/education.png"
alt="Education icon"
class="icon"
/>
<h3>Education</h3>
<p>Bachelor's Degree <br /> Master's Degree</p>
</div>
</div>
<div class="text-container">
<p>
wuefjhiehfhf
</p>
</div>
</div>
</div>
<img src="./assets/down-arrow.png" alt="arrow icon" class="arrow"
onclick="location.href='./experience'"/>
</section>
<section id="experience">
<p class="section__text__p1">Explore My</p>
<h1 class="title">Experience</h1>
<div class="experience-details-container">
<div class="about-container">
<div class="details-container">
<h2 class="experience-subtitle">Software development</h2>
<div class="article-container">
<article>
<img src="./assets/check.jpeg" alt="experience icon" class="icon">
<div>
<h3>HTML</h3>
<p>Experienced</p>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>