|
NotJustHTML.com is maintained by Image Envision's team to provide an
easy reference to html, css, javascript, and web design tips. Get
detailed answers to some of the most frequently asked questions
about HTML, CSS, JavaScript, and Web Design.
To do a very basic HTML table with 1 column and 1 row:
<table>
<tr>
<td> -Row 1,
Cell 1- </td>
</tr>
</table>
Example of a very basic HTML document. This example is a HTML document, with the very minimum of HTML tags. It demonstrates how text inside the body tags are displayed to your browser.
<html>
<body>
/b
The content of the body element is displayed in your browser.
</body>
</html>
|