HTML(Hyper text mark up Language):-
It is the language used to create web page.It manages all the elements used in web pages.Whatever we use in webpage are arranged by HTML .
We should have knowledge about HTML because for
a. Creating web pages.
b. editing existing html page.
c. To use the others scripts like vbscript,asp,java scripts etc.
FrontPage, dream weaver like webpage program generate automatically Html language when we insert the elements in the page.
Html is written according to the structure of the webpage i.e.there are two parts in webpage:-
a) Head,
b)body
so we write down the HTML in head and body.
Head:-It contains always Title for heading.
Body:-It contains always hypertext data e.g. text, graphics, sounds, videos etc.
Tags(< >):-
Text,picture and videos are managed with the different kinds of tags.Tags are the html syntax that is enclosed with greater than (>) or less than (<) characters.
For example:
Tags is written this like
<b>-it is used for bold text.
Each tags are closed always when starting
Starting ————-ending:-
<I> hypertext data </I>
We write down our text or picture with in the tag.
Html syntax:-
<html>
<head>
<title>…………</title>
</head>
<body>
Tags are used within here of different elements
</body>
</html>
Some important things to write HTML:-
a. The tags are written in notepad.
b. Save the tags in HTML format e.g.
[Page name.html]
c.open the page, that will open in browser.
Editing page:-
Editing page means changing something in existing page. To edit follow up:-
i. open the page in browser.
ii. Click on view menu. Or right click on page.
iii. Click on "view source".
iv. Write or delete what ever you want to do.
v. Save and refresh in web page (F5).
Important shortcut keys:-
Alt+tab-for viewing pages (or program windows) easily.
F5:-For refresh the page to use the edited effects in the pages.
