Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1- Create your html resume according to the following template: 2. Create a css

ID: 3668491 • Letter: 1

Question

1- Create your html resume according to the following template:

2. Create a css file to format your resume as the following figure:

Your Name Here Mobile :.... Email: you@yourdomain.com ail: vouavourdomain.com Objective Ex ce Skills Education Contact ective To take a positiorn as a software e iperience Junior Developer, Software Company (2010 - Present) signed and impl nted end-user features for Flagship Product Skills Languages, JavaScript, Python, Ruby Education ation Board Percentage /Grades Year Contact Name Email Please type you text here... Message Submit

Explanation / Answer

<html>
<title>
Resume
</title>
<body>
<h1> My_Name </h1>
<h2> Address:- My_Address</h2>
<h2> Mobile:- My_Mobile</h2>
<h2> Email:- My_Email</h2>

<nav>
<a href="/objective/">Objective</a> |
<a href="/experience/">Experience</a> |
<a href="/skills/">Skilss</a> |
<a href="/education/">Education</a> |
<a href="/contact/">Contact</a>
</nav>
</body>
</html>

1. Your /objective code

<html>
<title>
Objective
</title>
<body>
<h3>Objective</h3>
To take ........
</body>
</html>

2. Your /experience code

<html>
<title>
Experience
</title>
<body>
<h3>Objective</h3>
//USe bullets and write content here
</body>
</html>

3. Your Education code

<html>
<title>
Education
</title>
<body>
<h3>Objective</h3>
//use Table here like this
<table>
<tr>
<td>Education</td>
<td><Qualification></td>
</tr>
</body>
</html>

4. Your /skills code

<html>
<title>
Skills
</title>
<body>
<h3>Skills</h3>
//USe numbering here
</body>
</html>

5. Your /Contact code

<html>
<title>
Objective
</title>
<body>
<h3>Contact</h3>
<input type="text" name="Name">
<input type="text" name="Email">
Message: <textarea rows="4" cols="50">
</textarea>
</body>
</html>