HTML and CSS Reference
In-Depth Information
Create a table
1.
Create a new folder within the HTML Files folder called Travel .
2.
In Notepad, create a home page (file name index.html ) titled
Traveling Down South .
3.
Save it in the Travel folder.
Tip: Make sure that your new home page has the correct file
name—index.html—and all necessary tags:
<html>
<head>
<title>Traveling Down South</title>
</head>
<body>
</body>
</html>
You're going to create a simple one-row, two-cell table that looks
like this:
links
content
4.
The first step is to begin the table.
Below the <body> tag, begin your table with the <table> tag:
<body>
<table>
Search WWH ::




Custom Search