HTML Tags and Structure
Joslenne Peña
Photo Credit: https://cdn-images-1.medium.com/max/600/1*pixFq7k28LKsABpDNRCjJw.png
Tags or Elements
Attributes
CSS styles for attributes – ( we go over this next week)
Anchor link
<header>
<nav>
<footer>
<figure>
<ul> – an unordered list. By default, an unordered list element will contain a bulleted list of elements.
<li> – a list item. Inside of <ul> and <ol> (ordered lists) elements, each item you want to include should be contained inside its own <li> element.
9
lists
HTML elements that are inside of other HTML elements are called child elements. The outer element is the parent element. <li> elements are children of <ul> elements and <ol> elements.
<ul> <li>Item Number One</li> </ul>
Begin Parent Element Child Element End Parent Element
10
10
We can nest!
Audio / Video
Special Characters
Remember…
Acknowledgements/Contributions