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

Write a code for below instructions using a given HTML file. 1. Insert the lang

ID: 3914265 • Letter: W

Question

Write a code for below instructions using a given HTML file.

1. Insert the lang attribute in the head tag.

2. Insert the meta tag information as specified in the comments.

3. Insert your name in the title.

4. Insert your name in the header h2 tag.

5. Update the navigation links so they correspond to the correct web site files index.html, about_me.html, my_courses.html, and contact_me.html.

6. Put a 10-column table in the first article containing paired thead tags with the header, paired tbody tags with rows of courses you have completed, and paired tfoot tags with the average of your courses taken to date. The tfoot tr should contain a single paired th tag with and internal attribute "colspan=9" and the word Average between the paired th tags, followed by a single paired td tag with your average.

7. The thead columns contain the Year, Term, Course Number, Section, Name, Room, Day, Times, Instructor, and Grade. The tbody rows contain the data for each course you have taken.

8. Create a similar 10-column table in the second article, but list the courses you are currently taking or plan to complete before graduation - including this course. Do not put in any grades. If you are not taking any more courses, put in a statement about that.

9. Do not include any external, internal, or embedded css table styles or embedded table attributes.

10. As part of the Aside, list, and link to any other course you have or are taking, perhaps online.

template for the above instruction:

<!DOCTYPE HTML> <html> <!-- Begin head --> <head><!-- insert lang attribute in head tag --> <meta charset="UTF-8" /> <!-- meta description information goes here --> <!-- meta keywords information goes here --> <!-- meta author information goes here --> <meta name="DC.date" description="2017-01-18" /> <title>My Courses 2017 - Student Name</title> <!-- Link to master style sheet goes here --> <!-- Internal styles go here --> <!-- Link to JavaScript or jQuery goes here --> <!-- Internal JavaScript or jQuery code goes here --> </head><!-- end head --> <!-- Begin body --> <body> <!-- Begin header --> <header> <!-- Main header --> <h1>My Courses</h1> <h2>Student Name Goes Here</h2> <!-- Main navigation list --> <nav> <ul> <li><a href="#" >Home Page </a></li> <li><a href="#" >About Me </a></li> <li><a href="#" >My Courses</a></li> <li><a href="#" >Contact Me</a></li> </ul> </nav><!-- end nav --> </header><!-- end header --> <!-- Main section and aside content --> <main> <!-- Courses section --> <section> <h2>My Courses</h2> <!-- Past courses --> <article> <h3>Course Taken Year to Date</h3> <!-- Put 10 column table of past courses here --> <!-- If none, include explaination paragraph --> </article> <!-- Current and future courses --> <article> <h3>Future Courses</h3> <!-- Put 10 column table of current and future courses here --> <!-- If none, include explaination paragraph --> </article> </section><!-- end section --> <!-- Sidebar --> <aside> <!-- Aside header --> <h2>Other Studies</h2> <!-- List other things you are studying, like music, dancing, art.--> <!-- Non-navigation links to other information --> <!-- NOTE: Links must open in NEW tab / page! --> <ul> <li><a href="#">Course</a></li> <li><a href="#">Course</a></li> </ul> </aside><!-- end aside --> </main><!-- end section and aside --> <!-- Begin footer --> <footer> <h4>Copyright YYYY <a href="">Your Email</a></h4> <h5>CS597 Multimedia and Web Development <span>Term Year Section</span></h5> </footer><!-- end footer --> </body> </html>

Explanation / Answer

Here you go buddy

There are few changes you have to make like change # in href to your social links and your name and courses name and your email id in the end

I made the table

If any question ask in comment thanks

Here is the code

<!DOCTYPE HTML>
<html>
<!-- Begin head -->
<head><!-- insert lang attribute in head tag -->
<meta charset="UTF-8" />
<meta http-equiv="content-language" content="es">
<!-- meta keywords information goes here -->
<!-- meta author information goes here -->
<meta name="DC.date" description="2017-01-18" />
<title>John Doe</title>
<!-- Link to master style sheet goes here -->
<!-- Internal styles go here -->
<!-- Link to JavaScript or jQuery goes here -->
<!-- Internal JavaScript or jQuery code goes here -->
</head><!-- end head -->
<!-- Begin body -->
<body>
<!-- Begin header -->
<header>
<!-- Main header -->
<h1>My Courses</h1>
<h2>John Doe</h2>
<!-- Main navigation list -->
<nav>
<ul>
<li><a href="#" >Home Page </a></li>
<li><a href="#" >About Me </a></li>
<li><a href="#" >My Courses</a></li>
<li><a href="#" >Contact Me</a></li>
</ul>
</nav><!-- end nav -->
</header><!-- end header -->
<!-- Main section and aside content -->
<main>
<!-- Courses section -->
<section>
<h2>My Courses</h2>
<!-- Past courses -->
<article>
<h3>Course Taken Year to Date</h3>
<table>
<thead>
<tr>
<th>Year</th>
<th>Term</th>
<th>Course Number</th>
<th>Section</th>
<th>Name</th>
<th>Room</th>
<th>Day</th>
<th>Times</th>
<th>Instructor</th>
<th>Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>2017</td>
<td>computer</td>
<td>01</td>
<td>First</td>
<td>John</td>
<td>12</td>
<td>Monday</td>
<td>4 hours</td>
<td>Ms Linda</td>
<td>A+</td>
</tr>
<tr>
<td>2018</td>
<td>Physics</td>
<td>02</td>
<td>Last</td>
<td>Michael</td>
<td>02</td>
<td>Saturday</td>
<td>6 hours</td>
<td>Mr Smith</td>
<td>B+</td>
</tr>
</tbody>
<tfoot>
<tr>
<th "colspan=9">Average</th>
<td>A</td>
</tr>
</tfoot>

</table>
<!-- If none, include explaination paragraph -->
</article>
<!-- Current and future courses -->
<article>
<h3>Future Courses</h3>
<!-- Put 10 column table of current and future courses here -->
I haven't decided any future courses yet maybe you can help me find some
</article>
</section><!-- end section -->
<!-- Sidebar -->
<aside>
<!-- Aside header -->
<h2>Other Studies</h2>
<!-- List other things you are studying, like music, dancing, art.-->
<!-- Non-navigation links to other information -->
<!-- NOTE: Links must open in NEW tab / page! -->
<ul>
<li><a href="#" target="_blank">Music</a></li>
<li><a href="#" target="_blank">Dance</a></li>
</ul>
</aside><!-- end aside -->
</main><!-- end section and aside -->
<!-- Begin footer -->
<footer>
<h4>Copyright 2018 <a href="">johndoe@domain.com</a></h4>

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote