front 1 Describe the basic structure of an HTML page | back 1 ![]() -background information or metadeta positioned between <head> and </head> -all page content (text, images, buttons) positioned between <body> and </body> -all HTML code for a webpage sits between the <html> and </html> tags. |
front 2 What is the purpose of the <title> and </title> tags? | back 2 ![]() -Used to contain the information which is to be shown in the window title bar or webpage tabs |
front 3 What is the <link> tag used for? | back 3 ![]() -Used to connect the web[age to external files such as a CSS or JavaScript file. A <link> tag is used to connect the webpage to the external file. This is positioned between the <head> tags. |
front 4 What are the heading tags? | back 4 <h1> Heading goes here </h1> -adds page heading/title for a page -they come in different sizes with the largest being <h1></h1> and the smallest being <h6></h6> |
front 5 How do you add an image onto a webpage? | back 5 ![]() -Use an image tag <img> -Inside this tag we add the source (src) of the image (which may be a file path or a web address)> You can add some text to be displayed if the image doesn't load ) and we can specify the height and width of the image. |
front 6 How do you add a hyperlink in HTML? | back 6 ![]() -Add an anchor tag <a> -Anchor tags require the web address of the page to be linked -The anchor tag sandwiches the text that will become a clickable link on the page. |
front 7 How do you add a paragraph? | back 7 <p> and </p> tags are used to contain text that you wish to appear on the webpage -with a paragraph tag, extra attributes (such as align) can be used to format the text |
front 8 How do you make an unordered list? | back 8 ![]() -an unordered list (bullet point list) can be made using the <ul> </ul> tags (thats UL not U1) -each list item is defined with <li></li> tags. |
front 9 How do you make an ordered list? | back 9 ![]() -using the ol> tags, with each list item being defined using <li> tags |
front 10 What are <div> tags used for? | back 10 ![]() -to format parts of the webpage differently, e.g. two sections with different background colours. |
front 11 How do you add input boxes and buttons? | back 11 ![]() |
front 12 What do you need to add interactivity to a webpage? | back 12 -you have to add some kind of scripting language, e.g. JavaScript -To add scripts to a webpage they need to be inserted between <script> tags |