chattahoocheetech.blackboard.com Course) 41066 Course Home Page Start Here Instr
ID: 3725537 • Letter: C
Question
chattahoocheetech.blackboard.com Course) 41066 Course Home Page Start Here Instructor Information ASSIGNMENT INFORMATION Due Date Sunday, March 11, 2018 11:59 PM Points Possible 10 Lessons Developer's Toolbox My Grades Send Email Help Desk Request Form Using the Make a Fancy Table example from W3Schools, Create an HTML file named LASTNAME fancy that contains a fancy table with.. Two columns: Course Number, Course Name Fill it in with the information on the courses you're taking this semester. Add a caption below the table that says Spring Semester 2018. Add an appropriate title to your webpage. Host it on your live server Submit your HTML file and the HTML validation file as a single zip folder called LASTNAME fancytable. Include the link to your live server. ASSIGNMENT SUBMISSION l Attach Files Browse My Computer When finished, make sure to click Submit. Optionally, click Save as Draft to save changes and continue working later, or click Cancel to quit without saving changes. Cancel Save Draft SubmitExplanation / Answer
<!DOCTYPE html>
<html>
<head>
<title>Course Table</title>
<style type="text/css">
#Course{
width: 100%;
text-align: center;
font-size: 150%;
}
#Course th{
background-color: red;
border: 1px solid black;
color: white;
}
tr:nth-child(even)
{
background-color: #f2f2f2;
}
tr:hover{
background-color: #afafaf;
}
#Course td{
border: 1px solid #afafaf;
margin: 0px;
}
caption
{
padding: 12px;
background-color: #9f9f9f;
}
</style>
</head>
<body>
<table id="Course">
<caption align="bottom">Spring Semester 2018</caption>
<tr>
<th>Course Number</th>
<th>Course Name</th>
</tr>
<tr>
<td>1</td>
<td>Computer Networks</td>
</tr>
<tr>
<td>2</td>
<td>Compiler Design</td>
</tr>
<tr>
<td>3</td>
<td>Software Engineering</td>
</tr>
<tr>
<td>4</td>
<td>Computer Architecture</td>
</tr>
<tr>
<td>5</td>
<td>Parallel Algoritdms</td>
</tr>
<tr>
<td>6</td>
<td>Data Mining</td>
</tr>
<tr>
<td>7</td>
<td>SCALA Programming</td>
</tr>
<tr>
<td>8</td>
<td>MATLAB Programming</td>
</tr>
</table>
</body>
</html>
this is the html file, If there is any query, or you need more information, the please mention it in the comments section.
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.