click below
click below
Normal Size Small Size show me how
Web Design
Html terms
| Question | Answer |
|---|---|
| should always be put on the first line of your HTML code. It tells the web browser that your page uses HTML5 | <!doctype html> |
| defines the content of pages | html |
| defines how your page looks | CSS |
| HTML tag to make sentences appear on separate lines without any space above or below | <br> |
| HTML tag is put before paragraphs of text. This tag automatically adds some space above and below each paragraph. | <p> |
| is called a paragraph end tag | </p> |
| makes the rules for HTML and CSS. | W3C |
| W3C rules states webpages need 2 things | A doctype and a title element |
| Has 3 parts start tag, contents, and end tag | title element |
| is used for the main heading | <h1> |
| How many heading tags are there? | 6 |
| To make 1st look like 1st you need to use the superscript tag | <sup> |
| made bold using the _____ tag. | <strong> |
| The link start tag in this task contains a _____ attribute, which tells us the type of file that it links to. | rel |
| The ______ attribute tells us the path of the file that it links to. (The address of the file). | href |