Here's a place for web and html related reference material.
CSS margin and padding
- top, right, bottom, left
HTML Entities
Result | Description | Entity Name | Entity Number |
---|---|---|---|
non-breaking space | |   | |
< | less than | < | < |
> | greater than | > | > |
& | ampersand | & | & |
" | quotation mark | " | " |
' | apostrophe | ' | ' |
“ | left double quote | “ | “ / “ |
” | right double quote | ” | ” / ” |
× | multiplication | × | × |
÷ | division | ÷ | ÷ |
© | copyright | © | © |
HTML template
<html> <head> <title></title> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <body> <h1>Example Page</h1> <p></p> </body> </html>
Style
<link rel="stylesheet" type="text/css" href="style.css" />
<style type="text/css"> .myborder { border:1px solid black; } </style>
Table
<h2>Table</h2> <table> <tr> <td></td> <td></td> </tr> <tr> <td></td> <td></td> </tr> </table>
List
<h2>List</h2> <ul> <li><a href=""></a></li> <li><a href=""></a></li> </ul>
No comments:
Post a Comment