CSS Session 3


COPY and PASTE the source codes below to your newly created EDITHA file.

<html>
<head>
<title>Practice3</title>
</head>
<body>
<H1>My Grades</H1>
<table border="1">
<tr>
 <th>1st Quarter</th>
 <th>2nd Quarter</th>
 <th>3rd Quarter</th>
 <th>4th Quarter</th>
</tr>
<tr>
  <td>A</td>
  <td>B+</td>
  <td>B</td>
  <td>B+</td>
</tr>
</table>
<footer>
  CSS Session 3<br>
  Last Name, First Name
</footer>
</body>
</html>

Leave a comment