


|
Web Paging 101 |
|
|

|
12 HTML Cheat Sheet: Building in Code View |
|
Paste at the head of every web page.
Document Title <html> ... </html> Creates the HTML page <head> ... </head> Head of Page <title> ... </title> Sets the page title <body> ... </body> What you see on the page falls between these tags
Increases Header and Footer Font <h1> ... <h1> Header tag (h1 - h6)
Bold Text <b>...</b> Bold tag Video
Italize Text <i> ... </i> Italic tag
Font of Text <font> ... </font> Font tag
Center Text <center> ... </center>
Underline Text
Page Break <<br /> inserts a line break
Post Form Method <form method="post/get" action="..." > ... </form> Video
SUB TABLE TAGS
<td> ... </td> Creates a cell in the table
LIST TAGS
Starts a List <ol><li> … </li></ol> HTML LIST TAGS VIDEO 4:51 <ul><li> ... </li></ul>
Creates a Paragraph for Text that includes punctuations. <p>...</p> PARAGRAPH TAGS VIDEO 2:34
Inserts A Hyperlink <a href="URL">...</a> HYPER LINK TAG VIDEO 6:52
Divides a Document <div> ... </div> DIV TAGS VIDEO 8:17
A link to another Page <a href="http://librarianwebsites.com/">HTML Styles</a> from Librarianwebsites.com
A link to a database page with more help under websites tab
<a href="http://librarianwebsites.com/websitedatabase.html">HTML Styles</a> from Librarianwebsites.com Database List
Blink <blink> This Makes the Text Blink </blink> |
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252" /> <title> TITLE OF YOUR WEBPAGE</title> </head>
<body> <p> Body of the web page.</p> </body>
</html> |


