Scenario You want to create an online resume where you can show off your skills
ID: 2247363 • Letter: S
Question
Scenario
You want to create an online resume where you can show off your skills to potential employers. Start by creating a simple 4-page website. You can keep adding to this site as you progress through your program, updating it with your knowledge, skills, and examples of projects that you have done.
Create a home page with some information about yourself. Create a page for your educational background, a page for your work experience, and a portfolio page with a list of projects that you have created. Link them all together and add appropriate graphics.
Rubric
Deliverable Points
Site Diagram—Four pages included and named appropriately. 4
Site Diagram—All pages connected in the diagram. 4
Web Site—Includes four pages as indicated in the site diagram. 4
Web Site—Pages named appropriately; home page named index.html. 4
Web Site—All pages connected with working hyperlinks. 5
Web Site—Text formatted using at least three different tags. 4
Web Site—Images included and displaying correctly. 5
Web Site—Content complete on all pages. 4
Lab Report—All sections complete. 6
Total 40
Lab Steps
Part A: Site Diagram
Create a new Visio file.
Log on to the Citrix server and start MS Visio.
Create a new file. Select Software and Database for the template category.
Select Conceptual Web Diagram for the template.
Add pages to the site map.
Add the home Web page object, and three more Web page objects.
Label the objects appropriately for your Index page, Education page, Work Experience page, and Portfolio page.
Use the Dynamic Connector to add appropriate links between the pages.
Save the file to your local computer.
Part B: Create the Web Site
Create the home page.
Create an index.html page.
Add some general information about yourself.
Add a picture. Be sure that you have permission to use the picture.
Include at least three text formatting tags, such as heading level, bold (strong), italics (emphasis), and so forth.
Create an education page.
Create an education.html page.
Add information about the schools that you have attended, major, classes taken, expected graduation date, and so forth.
Consider adding pictures of your campus or school.
Create a knowledge or skills page.
Create a skills.html page.
Add information about your knowledge or skills. Add areas of interest that you would like to pursue (such as mobile development, cloud computing, etc.).
Create a portfolio page.
Create a portfolio.html page.
Add a list of projects that you have done in your classes. If you do not have any projects yet, add some projects that you would like to pursue. Later, you can create links to .zip files with your projects, but this is not necessary at this time.
Create links
Using your site diagram for reference, create appropriate links from your home page to the other pages.
You may also want to create links directly from one page to the next (e.g., from the Education page to the Skills page, etc.).
Explanation / Answer
Advised to save the code into HTML files : 1) index.html 2) education.html 3) skill.html 4) portfolio.html and start browsing from index.html
INDEX.HTML
<html>
<body>
<table width="900">
<tr>
<td colspan=3> <h2> <center> Resume </center> </h2> </td>
</tr>
<tr >
<td width="300">
<a href="index.html"> <center> Home </center> </a>
</td>
<td width="300">
<a href="education.html"> <center> Education </center> </a>
</td>
<td width="300">
<a href="portfolio.html"> <center> Portfolio </center> </a>
</td>
</tr>
<tr>
<td>
<h3> Thomas Johnson </h3>
17th Lane Avenue, Near Kurla complex,
<br> Mumbai
<br> Home: 0022-235645
<br> Cell: +91-94587-96685
<br> Email: thomas.john@myinfo.co.in
</td>
<td>
</td>
<td align="right">
<img src="images/photo.jpg">
</td>
</tr>
<tr>
<td colspan=3> <hr> </td>
</tr>
<tr>
<td colspan=3>
<b> Career Profile: </b> <br>
<p> A highly dedicated, professional and accomplished Information Technology Lecturer withextensive knowledge of teaching computer science. Looking for a challenging position as Senior Information Technology Lecturer to utilize my technical skills for the growth of the Institution. </p>
<br>
<b> Professional strengths: </b>
<ul>
<li> Possess seven years of professional experience as Information and Technology Lecturer
<li> In-depth knowledge of latest IT technologies
<li> Possess good communication and team spirit
<li> Knowledge of Operating Systems, Object Oriented Programming Concepts and DataCommunication systems
<li> Familiar with concepts like Data Structures & Algorithm ,System Analysis and Design,Relational Database System, Data modeling, E-Commerce and Project Management
<li> Possess excellent teaching and monitoring skills
<li> Ability to complete assigned course within limited time period
</ul>
</td>
</tr>
</table>
</body>
</html>
EDUCATION.HTML
<html>
<body>
<table width="900">
<tr>
<td colspan=3> <h2> <center> Thomas Johnson </center> </h2> </td>
</tr>
<tr >
<td width="300">
<a href="index.html"> <center> Home </center> </a>
</td>
<td width="300">
<a href="education.html"> <center> Education </center> </a>
</td>
<td width="300">
<a href="portfolio.html"> <center> Portfolio </center> </a>
</td>
</tr>
<tr>
<td colspan=3> <hr> </td>
</tr>
<tr>
<td colspan=3>
<b> Educational Qualification: </b> <br>
</td>
</tr>
</table>
<br>
<table border=1>
<tr>
<td> <b> Year </b> </td>
<td> <b> Certification </b> </td>
<td> <b> Institute </b> </td>
<td> <b> Percentage </b> </td>
</tr>
<tr>
<td> 2013 </td>
<td> M.C.A (MIMS University) </td>
<td> GM college of Science, Navi Mumbai </td>
<td> 83% </td>
</tr>
<tr>
<td> 2013 </td>
<td> B.Sc (computer Science), University of Mumbai </td>
<td> Kendriya vidyalaya -2 , Delhi </td>
<td> 86% </td>
</tr>
<tr>
<td> 2010 </td>
<td> CBSE certification 12th </td>
<td> Kendriya vidyalaya -2 , Mumbai </td>
<td> 85% </td>
</tr>
<tr>
<td> 2008 </td>
<td> CBSE certification 10th </td>
<td> Institute </td>
<td> 82% </td>
</tr>
</table>
<br> <b> Core Qualifications :</b> <br>
<ul>
<li> Proficient in the basics and advanced workings of database software
<li> Skilled in technology programming and computing
<li> Strong knowledge of writing code and protocols testing software and monitoring and automating systems
<li> Capable of designing curriculum that invites thought and conversation
</ul>
<a href="skill.html"> Technical & Professional skills </a>
</body>
</html>
SKILL.HTML
<html>
<body>
<table width="900">
<tr>
<td colspan=3> <h2> <center> Thomas Johnson </center> </h2> </td>
</tr>
<tr >
<td width="300">
<a href="index.html"> <center> Home </center> </a>
</td>
<td width="300">
<a href="education.html"> <center> Education </center> </a>
</td>
<td width="300">
<a href="portfolio.html"> <center> Portfolio </center> </a>
</td>
</tr>
<tr>
<td colspan=3> <hr> </td>
</tr>
</table>
<h3> Technical Skills: </h3>
<ul>
<li> Web development: XHTML, HTML, Office Frontpage, Macromedia Dreamweaver 8,ColdFusion, CSS and Abode GoLive
<li> Languages: C++, C, C#, Jack the Ripper and JavaScript
<li> Databases: Oracle and MYSQL
<li> Operating systems: Red Hat Linux, UNIX, Windows NT/95/98/2000/XP and Vista
</ul>
<br> <h3> Professional Experience: </h3>
<b> Information and Technology College, Mumbai 20XX till dateInformation Technology Lecturer </b>
<ul>
<li> Handled the tasks of teaching concepts like leveraging Database Technologies andInformation Systems Design and Development
<li>Taught concepts like Network Applications, Electronic Commerce and Web Services
<li> Responsible for designing IT courses like preparing syllabus and course requirements
</ul>
</body>
</html>
PORTFOLIO.HTML
<html>
<body>
<table width="900">
<tr>
<td colspan=3> <h2> <center> Thomas Johnson </center> </h2> </td>
</tr>
<tr >
<td width="300">
<a href="index.html"> <center> Home </center> </a>
</td>
<td width="300">
<a href="education.html"> <center> Education </center> </a>
</td>
<td width="300">
<a href="portfolio.html"> <center> Portfolio </center> </a>
</td>
</tr>
<tr>
<td colspan=3> <hr> </td>
</tr>
</table>
<center> <h2> Portfolio: </h2> </center>
<b> <u> Projects undertaken </u> </b> <br><br>
<br> <b>Title: </b> LAN Chatting System
<br> <b> Duration: </b>90 days
<br> <b> Position: </b>Group member
<br> <b>Language: </b>Java
<br> <b> Summary: </b>Regular Chatting application in which server will accept multiple requests from different clients and clients will chat with each other with the help of server.
<hr>
<br> <b>Title: </b> K-Map
<br> <b> Duration: </b>60 days
<br> <b> Position: </b>Group Leader
<br> <b>Language: </b>C++
<hr>
<br> <b>Title: </b> Student Management System
<br> <b> Duration: </b>60 days
<br> <b> Position: </b>Group Leader
<br> <b>Language: </b> JSP
<hr>
<br> <b>Title: </b> Library Management System
<br> <b> Duration: </b>45 days
<br> <b> Position: </b>Group Member
<br> <b>Language: </b> JSP / Tomcat server
<hr>
<b> <u> Achievements </u> </b> <br>
<ul>
<li> Won first prize in Paper Presentation competition under MasterMind 20** State Level Competition.
<li> Presented Paper on “Android” under PIONEER 20** National Level Competition in Mumbai.
<li> Won first prize in Project competition under Spectrum 20** State Level Competition.
<li> Won best student award in Higher Secondary Education.
</ul>
</body>
</html>
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.