HTML - Tags Flashcards
Identify all tags
< ! DOCTYPE HTML >
Defines the document type
< html>
Defines a html document
< head>
Defines information about the document.
< title>
Title to show in the browser bar
<br></br>
Line breaker
<img></img>
Embeds image
< p>
Parragraph
< body>
Contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc.
< div>
Defines a division or a section in an HTML document.
< nav>
Defines a set of navigation links.
< link rel=”stylesheet” href=”style.css>
Defines a link between a document and an external resource
This tag is used to link to external style sheets
<h1> </h1>
… <h6> </h6>
Headings. <h1> defines the most important heading. <h6> defines the least important heading</h6></h1>
< i>
Italics
<b></b>
Bold
< style>
Defines style information for an HTML document.