Code Flashcards
Provides metadata ( specify page description, keywords, author of the document, last modified) about the HTML document.
The link/type of your document.
Defines a client-side script
opens and closes the HTML document
Where the tab title goes. Does not show up on website itself.
This is where heading tags go
This is where the bulk of the page goes (content).
<div></div>
formats a block of text
<div></div>
define the elements that appear several times on the page.
<div></div>
used to define main elements of the page (header, main content, sidebar)
<p></p>
opens and closes a paragraph
<h1></h1>
(h1-h6)
Opens and closes a header. H1 is large text, H6 is small text.
<ul></ul>
Opens and closes an unordered (bulleted) list
<ol></ol>
Opens and closes an ordered (numberedlist
<li></li>
List item tag. These go in between <ol> or <ul> tags.