0% found this document useful (0 votes)
16 views3 pages

Program1 HTML

Programming of html

Uploaded by

officialerrohan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views3 pages

Program1 HTML

Programming of html

Uploaded by

officialerrohan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

<!

DOCTYPE html>
<html>
<head>
<title>My Curriculum Vitae</title>
</head>
<body>

<h1>My CV</h1>

<h2>Personal Information</h2>
<ul>
<li>Name: Nilesh singh</li>
<li>Email: [email protected]</li>

<li>Phone: 6388421907</li>
</ul>

<h2>Education</h2>
<ul>
<li>Bachelor's in Computer Science</li>
<li>Master's in Software Engineering</li>
</ul>

<h2>Experience</h2>
<ul>
<li>Software Engineer at ABC Corp.</li>
<li>Research Assistant at XYZ University</li>
</ul>

<h2>Links</h2>
<ul id="links">
<!-- Links will be added here via JavaScript -->
</ul>

<script>
// JavaScript to add links
const links = [
{
name: 'Institute Website',
url: 'https://www.institute-website.com/'
},
{
name: 'Department Website',
url: 'https://www.department-website.com/'
},
{
name: 'Tutorial Website for Subject',
url: 'https://www.tutorial-website.com/'
}
];
const linksElement = document.getElementById('links');

links.forEach(link => {
const listItem = document.createElement('li');
const anchor = document.createElement('a');
anchor.href = link.url;
anchor.innerText = link.name;
anchor.target = '_blank'; // Open link in new tab
listItem.appendChild(anchor);
linksElement.appendChild(listItem);
});
</script>

</body>
</html>

My CV
Personal Information
Name:Nilesh singh

 Email: [email protected]
 Phone: 6388421907

Education
 Bachelor's in Computer Science
 Master's in Software Engineering

Experience
 Software Engineer at ABC Corp.
 Research Assistant at XYZ University

Links
 Institute Website
 Department Website
 Tutorial Website for Subject

You might also like