Wednesday, May 13, 2015

DeVry
Click on the image to visit DeVry University

Joseph Thacharayil
CIS-363A
Week1


Welcome to my first html class

What is HTML?

HTML is a markup language for describing web documents (web pages).
HTML stands for Hyper Text Markup Language
A markup language is a set of markup tags
HTML documents are described by HTML tags
Each HTML tag describes different document content


HTML Documents

All HTML documents must start with a type declaration: <!DOCTYPE html>.
The HTML document itself begins with <html> and ends with </html>.
The visible part of the HTML document is between <body> and </body>.

HTML Headings

HTML headings are defined with the <h1> to <h6> tags:

HTML Paragraphs

HTML paragraphs are defined with the <p> tag:

HTML links are defined with the <a> tag. The link address is specified in the href attribute:
Example:<a href="http://www.devry.com">This is a link</a>
to view page:file:///C:/Users/joseph/Documents/CIS/CIS363A/week1/htmlweek1.html

No comments:

Post a Comment