0% found this document useful (0 votes)
15 views

WT 1

The document describes an experiment to create an HTML/JavaScript CV that can be displayed on a personal website, institute website, department website, and tutorial websites for specific subjects. The code provided creates a basic CV layout using HTML tables, lists, and other elements.

Uploaded by

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

WT 1

The document describes an experiment to create an HTML/JavaScript CV that can be displayed on a personal website, institute website, department website, and tutorial websites for specific subjects. The code provided creates a basic CV layout using HTML tables, lists, and other elements.

Uploaded by

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

EXPERIMENT NO :- 01

OBJECTIVE:

Write HTML / Java scripts to display your CV in navigator, your Institute website,
Department Website and Tutorial website for specific subjects.

PROGRAM:

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Sakshi CV</title>
</head>
<body>
<table cellspacing="20px">
<tr>
<td>
<h1>Sakshi Chaudhary</h1>
<p>
<em>Fullstack Web Developer</em></a>
</p>
<p>
I am a self-motivated and passionate Full Stack Web Developer with high level
experience in HTML5 CSS3, Bootsrap4 and JavaScript.
</p>
</td>
</tr>
</table>
<hr>
<h3>Education</h3>
<ul>
<li>DPSG Ghaziabad</li>
<li>Sanskar College of Engineering and Technology
</li>
</ul>
<hr>
<h3>Skills</h3>
<table cellspacing="10px">
<tr>
<td>Web Developer</td>
<td>HTML | CSS | Bootsrap |Javascript | Vscode | Atom | Jsbin</td>
</tr>
<tr>
<td>Content Writing</td>
<td>Web copy | Academic writing | SEO Writing</td>
</tr>
<tr>
<td>Other Skills</td>
<td>Microsoft word | Microsoft Excel | Powerpoint Presentation | Outlook</td>
</tr>
</table>
<hr />
<H3>Contact Me</H3>
<ul>
<li><a href="">Twitter</a></li>
<li><a href="babawalefadare.medium.com">Medium</a></li>
<li><a href="www.linkedin.com/in/babawalefadare">Linkedin</a></li>
<li><a href="[email protected]">Gmail</a></li>
</ul>
</body>
</html>

OUTPUT:

You might also like