<!DOCTYPE html>
<html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> |
My First HeadingMy first paragraph. <--- This information tells the browser what going on
|
<h1>heading</h1>
<h2>heading</h2> <h3>heading</h3> <h4>heading</h4> <p>paragraph text</p> |
Biggest headingLarge headingMed headingSmall Headingparagraph text |
My Most Common Tags
<br /> = Line Break <form> </form> = Forms <button> </button> = button |
|
<a href="https://www.silverdappledesign.com">This is a link to the silverdappledesignwebsite</a>
|
links tend to be blue and sometime have an under line
|
<h3> Example </h3>
<p title="I'm a tooltip"> This is a paragraph. That has a tooltip on it. Hoover over it so see the "tooltip". (?) </p> |
ExampleThis is a paragraph. That has a tooltip on it. Hoover over it so see the "tooltip". (?) |