Tuesday, April 15, 2014

HTML Lessons Part 1

Introduction.
  Hyper Text Markup Language (HTML) is a program for making websites.  You use basic lines of code to to make things happen.  Here is a small HTML code so you can see what it's like.

For every HTML document you must start it off like this.  You must make sure it is capitalized properly.
<!DOCTYPE html>

This lets the computer know that you are coding in HTML.  A tag is an attribute wrapped in <> for example <p>.  To let to computer know you are done with the element.  An element is a group of tags like <div></div>.   The </> means that the element is done.

No comments:

Post a Comment