Question | Answer |
Why are web standards important? | Web pages can be viewed by different machines with different hardware and software, so they need to be presented in a compatible format. Development of web pages is simplified, as web programmers will be able to understand another developer's code. |
What is the purpose of a web browser? | To read HTML code and render it on a screen. |
What is HTML? | HyperText Markup Language. A standard used when creating web pages. |
How do HTML tags work? | They commonly come in pairs, e.g. <html>and </html> The first tag in a pair is called the opening tag, and the second tag is a closing tag. Between the tags, programmers can add text, more tags, and comments. |
What does the text between the <html> and </html> tags describe? | The web page. |
What does the text between the <body> and </body> tags describe? | The contents of the web page. |
Which tag is used for paragraphing? | <p> and </p> |
Which tag is used for hyperlinks? | <a href = "URL"> NAME OF WEBPAGE </a> |
Which tag is used for images? | <img src = "IMAGE LINK"> There is no closing tag. |
Want to create your own Flashcards for free with GoConqr? Learn more.