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

HTML/CSS [WEB PROGRAMMING] I want you to produce a webpage (BY HAND) giving a de

ID: 669126 • Letter: H

Question

HTML/CSS [WEB PROGRAMMING]

I want you to produce a webpage (BY HAND) giving a description of your current semester. At the top I want a list of your name, SSO, and your academic year [freshman, etc.]. I want this to be in a 16 point bold san-serif type. To the right of this I want a picture that represents you. Under this I want a table of the classes you are taking now. I want the department and course number, the instructor’s name, and the day and time of the class meeting. I want a header above each column, and I want line separating the row but no lines separating the columns. At the bottom I want 2 paragraphs: 1 describing a class you really enjoyed and why, and 1 describing a class you did not enjoy at all and why. I want the paragraphs to be in a 12 point serif font with a a first-line indent of 3 time the width of a ‘X’, and a space between paragraphs of 20 mm. I want you to use CSS in the head section (not in a separate file) to to control all the formatting

Explanation / Answer

<!DOCTYPE html>
<html>
<head>
<style>
h1 {
color:blue;
font-family:san-serif;
font-size:16;
font-style:bold;
}
p {
color:red;
font-family:serif;
font-size:12;
}
</style>
</head>
<body>
   <h1> XYZ, SSO,2015<h1>
   <img src="mypic.jpg" align=right height=100 wdith=100>
   <table border=5 width=75% cellspacing=2>
       <tr>
           <th>Dept No
           <th>Coursr No
           <th>Instructor's Name
           <th>Day & Time of Meeting
       </tr>
       <tr>
           <td>101
           <td>20
           <td>xyz
           <td>12/6/2015
       </tr>
   </table>
   <p>I enjoyed the class EVS in which I have great interest</p>
   <p>I didnot enjoy Math class because I didnot like this subject</p>
</body>
</html>