basicsOfHTML Flashcards
What are HTML tags?
They tell the browser how to display or transform regular text located between the “”. There’s usually a start tag and an end tag (has a “/”).
Ex.
<h1>Start</h1>
They usually come in pairs
What does the tag represent and what does it do?
It represents the root of the HTML document, it’s also known as the root element.
What does the tag represent and what does it do?
This element contains metadata about the document like the title, scripts, and style sheets.
What does the tag represent and what does it do?
This HTML element defines the document’s title that’s shown in a browser’s title bar or page’s tab.
It only contains text; tags within the element are ignored
ex.
Grandma’s Heavy Metal Festival Journal
This will show up as: Grandma’s Heavy Metal Festival Journal
in the browser tab
What does the tag represent and what does it do?
This HTML element specifies relationships between the current document and an external source.
What does the tag represent and what does it do?
This HTML element is used to embed executable code or data. It typically is used to embed or refer to JS code. ( can also be used with other languages)
What are header tags?
They represent 6 levels of section headings. <h1> is the highest section level and <h6> is the lowest</h6></h1>
What does the <p> tag represent and what does it do?</p>
This element represents a paragraph.
What does the tag represent and what does it do?
This element represents a self-contained composition in a document, page, application, or site, that’s intended to be independently distributable or reusable.
Ex. a forum post, an interactive widget
What does the tag represent and what does it do?
This element represents a generic standalone section of document. The most often have a heading.
What does the tag represent and what does it do?
This element represents the dominant content of the of a document. The main content area consists of content that’s directly related to or expands on the central topic of the document or application.
What does the tag represent and what does it do?
This element represents a section of a page whose purpose is to provide navigation links, either within the current doc or other docs. Ex. menus, tables of contents, indexes
What does the tag represent and what does it do?
This element represents introductory content, typically a group of introductory or navigational aids. Can include some heading elements, a logo, a search form, an author name, and other elements
What does the tag represent and what does it do?
This element represents a footer for its nearest section content or sectioning root element. It usually has info about the author of the section, copyright data, or links to related docs.
What does the <ul> tag represent and what does it do?</ul>
This element is the unordered list tag. It typically is rendered as a bulleted list.