What I’ve Learned So Far
HTML is short for Hyper Text Markup Language, HTML is what makes up the “bones” and or structure. CSS is short for Cascading Style Sheets, it is the “skin” and or cover.
You start a document with; <!doctypehtml> the <> are tags what goes between the tags <> <> is an element. <tag>element<tag> Your entire document is encompassed by the tags <html> and </html> this tells the computer where to look for the html after the first statement <!doctypehtml> says that it is html.
Using the tags <head> and </head> you can give your webpage a title, but the head tags must encompass the tags <title> and </title>
Using the tags <body> and </body> you can create paragraphs and change font size! Paragraphs are done by using the <p> and </p> tags fonts are done by using <h1> and<h1> the number is replaceable up to 6, 1 being the largest.
You can add images in you body tags using <imgsrc=”URL”/> with the URL being replaced with an actual URL. URL stands for Uniform Resource Locator. You cant also link a picture with the <ahref and </a> tags like <ahref=”URL”<imgsrc=”URL”></a> href stands for hypertext reference