Academic English I (AE1) - Spring 2017, Kawamoto


EXERCISES


How to make a simple homepage with a table

Step 1. Writing the HTML skeleton

The basic skeleton for an HTML source file is as follows:

<html>

<head>
</head>

<body>
</body>

</html>
Notes
  1. The file type must be text.
  2. Use meaningful names with a *.htm or *.html extension. In this example, let us use the following filename: scores.html.
[ Back ]