Tuesday, October 15, 2013

Exploring Tables

Here's a starter HTML code to use for making some tables:

<!DOCTYPE html>
<html lang="en:>
<head>
<title>My Title</title>
<meta charset="utf-8">
<head>
<body>
</body>
</html>
Copy that code to a new document in Notepad++, then save it as "tabletest.html" (or whatever).

Next we will begin adding some basic table code
<table border=1>
<caption >Whatever</caption>
<tr><td>First</td><td>Last</td></tr>
</table>

That code will produce the following table:

Whatever
SomethingMore Here

No comments:

Post a Comment