61

HTML Tutorial

Embed Size (px)

DESCRIPTION

For St.Montfort School,Bhopal, class X

Citation preview

Page 1: HTML Tutorial
Page 2: HTML Tutorial

What is HTML?

Hyper Text Markup Language A markup language designed for the

creation of web pages and other information viewable in a browser

The basic language used to write web pages

File extension: .htm, .html

Page 3: HTML Tutorial

Concept of Mark-up

If we have some text e.g. “This is my first day of work, I’m so excited!”

If we want to display the Text as :“This is my first day of work, I’m so

excited!” Then we need to mark “first day of

work” as Bold.

Page 4: HTML Tutorial

“This is my first day of work, I’m so excited!”

To be marked in Bold letters.

Page 5: HTML Tutorial

first day of work“This is my , I’m so

excited!”

<B>

</B>

Result is :

“This is my first day of work, I’m so excited!”

Page 6: HTML Tutorial

How does an HTML File Look Like

Page 7: HTML Tutorial

Creating a HTML File

1. Open Notepad2. Click on File -> Save as…3. In the File name pull-down box, type

in webpage.html4. Click on Save5. Type in content for your file6. Once you finished the content, click

on File -> Save

Page 8: HTML Tutorial

1. Open Notepad

Page 9: HTML Tutorial

2. Click on File -> Save as…

Page 10: HTML Tutorial

3. In the File name pull-down box, type in webpage.html

Page 11: HTML Tutorial

Select “All Files” from the “Save as type” drop down list box.

Page 12: HTML Tutorial

4. Click on Save

Page 13: HTML Tutorial

5. Type in content for your file

Page 14: HTML Tutorial

6. Once you finished the content, click on File -> Save

Page 15: HTML Tutorial

Viewing the HTML file in a Browser

There are 3 ways to view the web page generated by the HTML file.

Page 16: HTML Tutorial

Method 1

Go to Start -> Run

Page 17: HTML Tutorial

Click on Browse button.

Page 18: HTML Tutorial

Select the location of the HTML file (Where it is stored on your PC)

Page 19: HTML Tutorial

Select “All Files” option from the “Files of Type” Drop Down Menu.

Page 20: HTML Tutorial

Select the required HTML file from the list of all files in that location.

Page 21: HTML Tutorial

Click on the Open button after selecting the file.

Page 22: HTML Tutorial

The Web Page appears according to the HTML formats provided.

Page 23: HTML Tutorial

Method 2

Open any browser e.g. IE, Mozilla Firefox, Opera , Netscape Navigator etc.

Click Open -> Browse to the location of the File.

Select the file and click Open.

Page 24: HTML Tutorial
Page 25: HTML Tutorial

Method 3

Go to My Computers.

Navigate to the actual location of the HTML file.

Select the HTML file.

Double click to open it.

Page 26: HTML Tutorial

What are HTML tags?

We use HTML tags to mark the elements of a file for the browser, in other words, we use tags to denote the various elements in an HTML document. HTML tags consist of a left angle bracket (<), a tag name, and a right angle bracket (>). Tags are usually paired (e.g., <H1> and </H1>) to start and end the tag instruction. The end tag looks just like the start tag except a slash (/) precedes the text within the brackets.

Page 27: HTML Tutorial

HTML Tags

For example: <b>, <font>,<title>, <p> etc.

Tag usually goes with pair: an open tag (<b>) and an end tag (<\b>)

Single tag: <hr>,<br> Tags are NOT case sensitive

Effect Code Code Used What It Does

Bold B <B>Bold</B> Bold

Italic I <I>Italic</I> Italic

Page 28: HTML Tutorial

HTML Tag Attributes

Each HTML tag has certain additional options for providing more information to the final output.

These options are called ATTRIBUTES.

E.g. : <BODY

BGCOLOR=“Red”>…..</BODY> Here BODY is the Tag and

BGCOLOR is the Attribute.

Page 29: HTML Tutorial

HTML Document Structure

<html> <head>

<title> Page Title Goes Here </title></head>

<body> content goes here

</body></html>

Page 30: HTML Tutorial

A Sample – My First Web Page

<HTML><HEAD>

<TITLE>My First Web Page</TITLE> </HEAD>

<BODY>Today is my first day at my new job,

I’m so excited!</BODY>

</HTML>

Page 31: HTML Tutorial

Some Formatting Tags

<center>….Text….</center> <left>….Text….</left> <right>….Text….</right> <B>….Text….</B> <I>….Text….</I> <U>….Text….</U>

For aligning the text towards the center of

the web page.For aligning the text

towards the left of the web page.For aligning the text

towards the right of the web page.

For applying BOLD font style to the enclosed

text.For applying ITALIC

font style to the enclosed text.For applying Underline font style to the enclosed text.

Page 32: HTML Tutorial

The Heading Tag

The heading tag is used to format the enclosed text as large bold characters for displaying the heading of the web page content.

For Example

Page 33: HTML Tutorial

This is the application of <h1>….</h1> tag on the text.

Page 34: HTML Tutorial

The Heading Tag

There are 6 levels of the heading tag :

<h1>……….Text…………</h1>

<h2>……….Text…………</h2> <h3>……….Text…………</h3> <h4>……….Text…………</h4> <h5>……….Text…………</h5> <h6>……….Text…………</h6>

Page 35: HTML Tutorial

Each level of the heading tag formats the enclosed heading text with different font sizes beginning from the largest <h1> to <h6>.

We can also apply the various formatting tags on it too.

Page 36: HTML Tutorial

Application

<HTML><HEAD>

<TITLE>My First Web Page</TITLE> </HEAD>

<BODY><h1>My First Day of Work!</h1>Today is my first day at my new job, I’m

so excited!</BODY>

</HTML>

Page 37: HTML Tutorial

What is HTML?

Hyper Text Markup Language

Web authoring software language Specifically created to make World

Wide Web pages Created by Tim Berners-Lee in 1993

from SGML

Page 38: HTML Tutorial

Background

BGCOLOR

Specifies a background-color for an HTML page.

<body bgcolor="#000000">

<body bgcolor="rgb(0,0,0)">

<body bgcolor="black">

Page 39: HTML Tutorial

Using the Color Code : ‘#000000’ or ‘RGB(0,0,0)’ or ‘black’ gives the black color

in the background.

Page 40: HTML Tutorial

Using Color CodesMethod I -- Simple Language Codes

• Using the name of the color : e.g. Red, Black, Blue, Yellow, Pink, Orange etc.

Page 41: HTML Tutorial

Orange color in the background.

Page 42: HTML Tutorial

HTML code

<html><head>

<title>My First Web Page</title></head>

<body bgcolor=“Orange"><h1>My First Day at Work!</h1>

</body></html>

Page 43: HTML Tutorial

Using Color CodesMethod II -- Hexadecimal Codes

• Using any arbitrary combination of alphabets and numbers preceded by a ‘#’ symbol.

• Like : <body bgcolor = “#abc123”>

Page 44: HTML Tutorial

A random(green) color in the background.

Page 45: HTML Tutorial

HTML code

<html><head>

<title>My First Web Page</title></head>

<body bgcolor=“#abc123"><h1>My First Day at Work!</h1>

</body></html>

Page 46: HTML Tutorial

Using Color CodesMethod III -- Using RGB function

• Using the RGB() function in the following manner : RGB(r,g,b) where :

r = red color componentg = green color componentb = blue color component

• Example : <body bgcolor = rgb(3,4,5)>

Page 47: HTML Tutorial

A random(violet) color in the background.

Page 48: HTML Tutorial

HTML code

<html><head>

<title>My First Web Page</title></head>

<body bgcolor=RGB(150,44,100)><h1>My First Day at Work!</h1>

</body></html>

Page 49: HTML Tutorial

Background : Adding Images Background Attribute in the Body tag.

Specifies a background-image for a HTML page<body background="clouds.gif"> <body background="C:\Windows\FeatherTexture.bmp">

Page 50: HTML Tutorial
Page 51: HTML Tutorial

HTML code

<html> <head>

<title>My First Web Page</title> </head>

<body background="C:\Windows\FeatherTexture.bmp">

<h1>My First Day at Work!</h1> </body></html>

Page 52: HTML Tutorial

Procedure to add Background ImagesSome simple tips :

Step 1

• Search for some pictures available on your PC.

Page 53: HTML Tutorial

You can provide the image type (*.jpg,*.gif,*.bmp,*.png) etc. to narrow your search.

Page 54: HTML Tutorial

Select any image and browse to its location.

Page 55: HTML Tutorial

Copy the actual location of the image.

Page 56: HTML Tutorial

The location copied is :“C:\Documents and Settings\new user\My Documents\My Pictures”

Page 57: HTML Tutorial

Select “Properties”.

Page 58: HTML Tutorial

Select and copy the filename from the Properties Dialog Box and check its type also.

The Complete path to the image is :“C:\Documents and Settings\new user\My Documents\My Pictures\Giraffe.jpg”

Page 59: HTML Tutorial

HTML Code

<html><head><title>My First Web Page</title></head>

<body background= “C:\Documents and Settings\new user\My Documents\My Pictures\Giraffe.jpg” ><h1>My First Day at Work!</h1></body></html>

Page 60: HTML Tutorial

Background image is applied at the back

Page 61: HTML Tutorial