html basic lecture - 01. what is html? html (hyper text markup language) is a a standard markup...

10
HTML Basic Lecture - 01

Upload: luke-whalen

Post on 26-Mar-2015

217 views

Category:

Documents


2 download

TRANSCRIPT

Page 1: HTML Basic Lecture - 01. What is HTML? HTML (Hyper Text Markup Language) is a a standard markup language used for creating and publishing documents on

HTML Basic

Lecture - 01

Page 2: HTML Basic Lecture - 01. What is HTML? HTML (Hyper Text Markup Language) is a a standard markup language used for creating and publishing documents on

What is HTML?

HTML (Hyper Text Markup Language) is a a standard markup language used for creating and publishing documents on the World Wide Web (www).

Page 3: HTML Basic Lecture - 01. What is HTML? HTML (Hyper Text Markup Language) is a a standard markup language used for creating and publishing documents on

Topics in this lecture

HTML Basic Tags & Code snippet Tag & Attribute Text Formatting Image Linking & Directory pointing Conceptual Layout Design

Page 4: HTML Basic Lecture - 01. What is HTML? HTML (Hyper Text Markup Language) is a a standard markup language used for creating and publishing documents on

HTML Basic Tag & Code Snippet

HTML has basic 5 tags for starting a HTML documents

Each tag must have to end and consists of starting & ending tag. Something has some exceptional rule such as <br />, <hr>.

Page 5: HTML Basic Lecture - 01. What is HTML? HTML (Hyper Text Markup Language) is a a standard markup language used for creating and publishing documents on

A HTML Simple page with Basic Tag

Preview

HTML Coding

Page 6: HTML Basic Lecture - 01. What is HTML? HTML (Hyper Text Markup Language) is a a standard markup language used for creating and publishing documents on

HTML Tag & Their Attributes

HTML tag works as like as commands. Each tag are defined by angle bracket (< & >).

Starting Tag <TagName>Ending Tag </TagName>

Page 7: HTML Basic Lecture - 01. What is HTML? HTML (Hyper Text Markup Language) is a a standard markup language used for creating and publishing documents on

HTML Text Formatting

Code

Preview

For Practice<big><em><sub><sup><small><ins><del><strike><code><kbd><samp><tt><var><pre><abbr> <acronym> <address><blockquote><q><cite><dfn>

Ref: http://www.w3schools.com/HTML/html_formatting.asp

Page 8: HTML Basic Lecture - 01. What is HTML? HTML (Hyper Text Markup Language) is a a standard markup language used for creating and publishing documents on

HTML Image

Page 9: HTML Basic Lecture - 01. What is HTML? HTML (Hyper Text Markup Language) is a a standard markup language used for creating and publishing documents on

Linking & Directory Pointing

Link with another resources.<a href=http://www.google.com>Google</a>

<a> = anchor texthref= hyperlink reference

Page 10: HTML Basic Lecture - 01. What is HTML? HTML (Hyper Text Markup Language) is a a standard markup language used for creating and publishing documents on

Thank you very much!!