As I said, I will be blogging about coding HTML and CSS. This first post will be about the basics of HTML. HTML stands for Hyper Text Markup Language. HTML, along with a few other programming languages, is used to make web pages. HTML is used to display text in different ways. CSS, or Cascading Style Sheets,are used to format that text.
There are two parts to any HTML document, the <head> tag and the <body> tag. The <head> contains information about the text that is in <body>. The <head> also contains links to stylesheets. The contents of the <head> do not show up on the page. The <body> contains the text that shows up on the page.