The HTML for a table is provided below Put this table on a w
The HTML for a table is provided below. Put this table on a web page named l3p3.html and create a link to it from your index page. Write a document level style sheet for the page that centers the table (left to right) on the page, uses Verdana, Geneva, Arial, or sans-serif for the font family (in that order), and colors and backgrounds as shown in the image. Note: you will not have to include CSS for borders; you will get white automatically in the cell margins.
Here is the HTML for the table. You will probably want to add class attributes to some of the elements.
I.T. News Disable UPnP g New, Bigger iPhone p Microsoft Office 2013p. 2 Encryption NewsSolution
So we have an Index page, from where we will be directed to the html page containing the table.
The Code for the Index Page will be: -
<HTML>
<HEAD>
</HEAD>
<BODY>
<h3 align=\"center\"><a href=\"l3p3.html\">Go to
Table</a></h3>
</BODY>
</HTML>
Now, This page has an hyperlink which will redirect you to a page named l3p3.html, as specified in the question.
Make sure that the index.html file and l3p3.html file are in the same folder/location.
The Code for the l3p3.html Page is given below, which has the table, having the desired styles, Font family and background colors, as specified using CSS.
Code for l3p3.html : -
<html>
<head>
<style>
tr.odd{
background-color:lightblue;
}
tr.even{
background-color:lightgreen;
}
tr.head{
color:white;
background-color:darkgreen;
}
/*To Center the Table*/
table{
margin:0 auto;
font-family:Verdana,Geneva,Arial,sans-serif;
}
</style>
</head>
<body>
<table>
<tr class=\"head\"><th colspan=\"2\">I.T. News</th></tr>
<tr class=\"odd\"><td>Disable UPnP</td><td>p. 7</td></tr>
<tr class=\"even\"><td>New, Bigger iPhone</td><td>p.
9</td></tr>
<tr class=\"odd\"><td>Microsoft Office 2013</td><td>p.
2</td></tr>
<tr class=\"even\"><td>Encryption News</td><td>p.
2</td></tr>
</table>
</body>
</HTML>
Here, we complete with your question, these 2 given code satisfy all the needs of the Question.
Thank You for using Chegg...

