click below
click below
Normal Size Small Size show me how
HTML Basics
Resource for EPOA Studying
| Question | Answer |
|---|---|
| What does HTML stand for? | Hyper Text Markup Language |
| Who is making the Web standards? | The World Wide Web Consortium |
| What is the correct HTML element for the largest heading? | <h1> |
| What is the correct HTML element for inserting a line break? | <br> |
| What is the correct HTML for adding a background color? | <body style="background-color:yellow;"> |
| What is the correct HTML element to define important text? | <strong> |
| What is the correct HTML element to define emphasized text? | <em> |
| What is the correct HTML for creating a hyperlink? | <a href=" |
| Which character is used to indicate an end tag? | / |
| How can you open a link in a new tab/browser window? | <a href="url" target="_blank"> |
| Which of these elements are all <table> elements? | <table><tr><td> |
| True or False: Inline elements are normally displayed without starting a new line. | True |
| How can you make a numbered list? | <ol> |
| How can you make a bulleted list? | <ul> |
| What is the correct HTML for making a checkbox? | <input type="checkbox"> |
| What is the correct HTML for making a text input field? | <input type="text"> |
| What is the correct HTML for making a drop-down list? | <select> |
| What is the correct HTML for making a text area? | <textarea> |
| What is the correct HTML for inserting an image? | <img src="image.gif" alt="MyImage"> |
| What is the correct HTML for inserting a BACKGROUND image? | <body style="background-image:url(background.gif)"> |
| True or False: An <iframe> is used to display a web page within a web page. | True |
| True or False: HTML comments start with a <!-- and end with --> | True |
| True or False: Block elements are normally displayed without starting a new line. | False |
| Which HTML element defines the title of a document? | <title> |
| Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed? | alt |
| which doctype is correct for HTML5? | <!DOCTYPE html> |
| Which HTML element is used to specify a footer for a document or section? | <footer> |
| True or False: In HTML, you can embed SVG elements directly into an HTML page. | True |
| What is the correct HTML element for playing video files? | <video> |
| The HTML global attribute, "contenteditable" is used to _____ ? | Specify whether the content of an element should be editable or not. |
| In HTML, onblur and onfocus are _______ ? | Event Attributes |
| Graphics defined by SVG is in which format? | XML |
| The HTML <canvas> element is used to ______? | Draw Graphics |
| In HTML, which attribute is used to specify that an input field must be filled out? | required |
| Which input type defines a slider control? | range |
| Which HTML element is used to display a scalar measurement within a range? | <meter> |
| Which HTML element defines navigation links? | <nav> |
| In HTML, what does the <aside> element define? | Content aside from the page content. |
| Which HTML element is used to specify a header for a document or section? | <header> |
| What is the correct HTML element for playing audio files? | <audio> |