The skeleton of the page:
<!DOCTYPE html> (begining)
<html> (frist line)
</html> (last line)
<> (tags, always come in pairs an opeing tag and a closing tag.)
<head> </head> (contains information about our HTML file)
<title> </title> (the title what we see in the browser's title bar on page/tab)
<body> </body> [(where we put our content such as text,images and links)(the
body goes inside <html> after <head>)]
<p> </p> (paragraphs we can write content in between the tags)
<h1> </h1> (headling tag 1)
<h2> </h2> 2
<h3> </h3> 3
<h4> </h4> 4
<h5> </h5> 5
<h6> </h6> 6
<a> </a> ( adding a link)
<a href=" "> My favorite site! </a>
(href= a text is a link.)
<img> (adding a image)
src (tag for the link of the picture)
/ (closing tag)
<img src=" " />
<h1 style="text-align:center"> </h1> ["text-align:left" (or right, or center) to
determine the location of the text]
<strong>....</strong> (to bold words)
<em>....</em> (italicize words)
<ul>
<li> </li>
[unordered list]
</ul>
[a list withing a list both together]
<ol>
<li> </li>
[ordered list]
</ol>
<p style="color:..."> tekst.</p> [adding color to the paragraph]
<p style="font-family:...." tekst. </p> [adding font to the text paragraph]
<p style="font-size:number" tekst. </p> [adding font size to the paragraph]