HTML Quiz

English 3120 HTML Quiz

Code the sample page in html based on the following requirements:

  1. Use internal/embedded CSS style to declare the following:
    1. Background color for the entire page: powderblue
    2. Font color for the heading: blue
    3. Font family for paragraphs: Helvetica
  2. Use inline CSS style to define the font size for the heading: 60 pixels
  3. For the table:
    1. width: 700 pixels (1st column: 100 pixels, 2nd column: 300 pixels; 3rd Column: 300 pixels)
    2. Table border size: 1
    3. Cell padding: 5

English 3120 Class Website

Hi, Welcome to the class website of English 3120.Here are the projects we need to complete for the semester:

Week Project Comment
3 Technology Report history of web design technologies
4-5 Web Analysis rhetorical design
Presentations rhetorical concept
<html> 
   <head> 
     <title>English 3120 Class Website</title> 
     <style> 
         body {background-color: powderblue;} 
         h1   {color: blue;} 
         p    {font-family: helvetica;} 
     </style>
 
   </head>

<body>
<h1 style="font-size:60px">English 3120 Class Website</h1>
<p>Hi, Welcome to the class website of English 3120. 
<p>Here are the projects we need to complete for the semester:<br><br>

<table width=700 border=1 cellpadding=5> 
   <tr> 
     <th width="100">Week</th> 
     <th width="300">Project</th> 
     <th width="300">Comment</th> 
   </tr> 
   
   <tr> 
     <td align=center>3</td> 
     <td>Technology Report</td> 
     <td>history of web design technologies</td>  
   </tr> 

   <tr> 
     <td rowspan=2 align=center>4-5</td> 
     <td>Web Analysis</td> 
     <td>rhetorical design</td>  
   </tr> 

   <tr> 
     <td>Presentations</td> 
     <td>rhetorical concept</td>  
   </tr>
</table> 
</body>
</html>