<!DOCTYPE html> <html> <head> <!-- Mark Brautigam CIS 86: PHP and MySQL 2017 Aug 30 --> <meta charset='utf-8' /> <title>My Web Page</title> <style type='text/css'> /* styles go here */ </style> </head> <body> <h1>My Web Page</h1> <!-- page content will go here --> </body> </html>
Here is the code for a bullet list:
<ul> <li>Mission College <li>Ohlone College <li>Foothill College <li>Cabrillo College </ul>
Here is the code for a table:
<table> <tr> <th>Key</th> <th>Command</th> </tr> <tr> <td>Cmd-Space</td> <td>Spotlight</td> </tr> <tr> <td>Cmd-S</td> <td>Save</td> </tr> </table>
Here is an excellent tutorial on HTML tables (thank you to the student who linked this to your page):
http://www.w3schools.com/html/html_tables.asp
No comments:
Post a Comment