| A | B |
| HTML | Hypertext Markup Language |
| is responsible for the content and structure of a webpage. | HTML |
| Visible content on a webpage | elements |
| elements are created by using these | tags |
| defines paragraph | <p> |
| defines heading | <h1> |
| his is an instruction to the web browser about what version of HTML the page is written in. | <!DOCTYPE> |
| This is the very first line of code in your document | <!DOCTYPE> |
| This WILL NOT be displayed and contains information about the website? | head |
| Used to input descriptions and keywords that improve search engine optimization. | metadata |
| This contains all the visible content of a webpage. | body |
| Headings | <h1></h1> to <h6></h6> |
| An HTML element starts with a start tag and ends with a closing tag. | <start></end> |
| Gives the contained text emphasis (usually as italics). | <em></em> |
| The tags used to make text Bold. | <strong></strong> |
| The tag used to insert a Single Line Break. It does not need a closing tag. | <br> |
| links are defined with the <a> tag. The link address is specified with this attribute | href |
| images are defined with this tag. | <img> |
| Insert comments into the HTML source code. | <! |
| Serves as a container for content. | <div></div> |
| Makes ordered lists. | <ol></ol> |
| Makes unordered (or bulleted) lists. | <ul></ul> |
| Marks items in either the ordered or unordered list. | <li></li> |