click below
click below
Normal Size Small Size show me how
HTML Codes
| Term | Definition |
|---|---|
| <html> </html> | Creates an HTML document. |
| <head> </head> | Sets off the title and other information that isn't displayed on the webpage itself. |
| <body> </body> | Sets off the visible portion of the document. |
| <title> </title> | Puts the name of the document in the title bar. |
| <meta /> | Provides information about the page for search engines and browsers. |
| <h1> </h1> | Creates the largest headline. |
| <h6> </h6> | Creates the smallest headline. |
| <b> </b> | Creates bold text. |
| <i> </i> | Creates italic text. |
| <a href="URL"></a> | Creates a hyperlink. |
| <a href="mailto:EMAIL"></a> | Creates a mailto link. |
| <p> </p> | Creates a new paragraph. |
| <br /> | Inserts a line break. |
| <blockquote> </blockquote> | Indents text from both sides. |
| <ol> </ol> | Creates a numbered list. |
| <li> </li> | Procedes each list item, and adds a number. |
| <ul> </ul> | Creates a bulleted list. |
| <img src="filename" alt="alternate text" height="number" width="number" /> | Adds an image. |
| <hr /> | Inserts a horizontal rule. |
| <object> </object> | Inserts an embedded object such as an audio or video clip. |
| <object width="320" height="260"> </object> | Sets size of object. |