You are on page 1of 3

AIM:- HTML/Java scripts to display your CV in navigator, your Institute website, Department

Website and Tutorial website for specific subject.

Code:-

Index.html

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Navigator</title>
</head>
<body>
<div class="header">
<ul class="navbar">
<li class="nav-item"><a href="https://www.akgec.ac.in/">Institution</a></li>
<li class="nav-item"><a href="https://www.akgec.ac.in/departments/computer-science-and-
engineering/">Department</a></li>
<li class="nav-item"><a href="https://www.youtube.com/watch?v=BZP4oaj-
a_Y">Tutorial</a></li>
<li class="nav-item"><a href="resume.html">Resume</a></li>
</ul>
</div>

</body>
</html>

Resume.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, ini al-scale=1.0">
< tle>Resume</ tle>
<link rel="stylesheet" href="./style1.css">
<link rel="stylesheet" href="h ps://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-
DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAI l+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2Lw
A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<sec on id="resume" class="sec ons">
<h3>VARSHA RAJ</h3>
</sec on>
<br>
<p class="head">Skills</p>
<ul>
<li>Power BI – Data Visualiza on</li>
</ul>
<ul>
<li>Data Analysis with Python</li>
</ul>
<ul>
<li>Excel Basics for Data Analysis </li>
</ul>

<p class="head">Educa on</p>


<ul>
<li>AKGEC</li>
<li>Coursera</li>
</ul>
<p class="head">Experience</p>
<ul>
<li>Student Technology Intern for AKGEC</li>
</ul>
<div>Detail-oriented and analy cal data science enthusiast with a passion for leveraging data to drive
informed business decisions. Currently pursuing BTech at AKGEC, with coursework emphasizing sta s cal
analysis and data visualiza on. </div>
</body>
</html>

Output:-

You might also like