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

DOCTYPE HTML

vh
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)
22 views

DOCTYPE HTML

vh
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 lang="en">

<head>

<meta charset="UTF-8" />

<meta http-equiv="X-UA-Compatible" content="IE=edge" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<title>Resume Creator</title>

<!-- style link here -->

<link rel="stylesheet" href="style.css" />

</head>

<body>

<!-- input container starts here -->

<section class="resume-builder">

<div class="container">

<h1>Resume Creator</h1>

<div class="resume_container">

<form class="inputField">

<input type="text"

name="name"

placeholder="Your Name"

title="Enter Your Name" />

<input type="text"

name="title"

placeholder="Title/Sub Heading"

title="Enter Title/Sub Heading" />

<textarea name="work_experience"

placeholder="Work Experience"

cols="40" rows="3"

title="Enter Your Work Experience">


</textarea>

<textarea name="academic_details"

placeholder="Academic Details"

cols="40" rows="3"

title="Enter Your Academic Details">

</textarea>

<input type="text" placeholder="Objective"

title="Enter Your Objective"

name="objective" />

<textarea name="skills"

title="Enter Your Skills"

placeholder="Skills" cols="40"

rows="3">

</textarea>

<textarea name="projects"

title="Enter Your Projects"

placeholder="Projects"

cols="40"

rows="3">

</textarea>

<textarea name="achievements"

placeholder="Achievements"

cols="40" rows="3"

title="Enter Your Achievements">

</textarea>

<textarea name="contact"

placeholder="Contact Information"

cols="40" rows="3"

title="Enter Your Contact Information">

</textarea>

</form>
</div>

<p class="credit">

Created by

<a href=

"https://auth.geeksforgeeks.org/user/lunatic1/articles"

target="_blank">

lunatic1

</a>

</p>

<p class="tip">

**You can use markup in the text area for text decoration**

</p>

</div>

</section>

<!-- input container ends here -->

<!-- output container starts here -->

<div class="output_container"></div>

<!-- output container ends here -->

<!-- preview button -->

<button onclick="hide()">

Generate / Edit

</button>

<!-- script link here -->

<script src="script.js"></script>

</body>

</html>

You might also like