16
“Project Report” on “HTML” INTERNET TECHNOLOGY & WEB DESIGN NAME REG.NO. P.JYOTHI 980176 K.REKHA 980189 P.SWATHI 980188 BY “VISMA INFOTECH SERVICES KARKHANA”

Project on HTML.doc

Embed Size (px)

Citation preview

Page 1: Project on HTML.doc

“Project Report”

on

“HTML”

INTERNET TECHNOLOGY & WEB DESIGN

NAME REG.NO.

P.JYOTHI 980176

K.REKHA 980189

P.SWATHI 980188

BY

“VISMA INFOTECH SERVICES

KARKHANA”

Page 2: Project on HTML.doc

“HTML”

“HYPER TEXT MARKUP LANGUAGE”

Page 3: Project on HTML.doc

HTMLHyper Text Markup Language. It is also

called as XHTML (Xtensible Hyper Text Markup Language. HTML is derived from SGML (Standard General Markup Language).

HTML Versions are “1.0” to ”5.0”. Now, we are using “4.0” Version.

HTML is used for creating Web Pages.

Web Pages is a collection of different Web Pages.

HTML is not a programming language. It is a Markup Language.

Markup is a process of giving some extra features to a normal text.

A markup language is a set of HTML tags.

HTML tags are key work surrounded by angle brackets(< >)

Page 4: Project on HTML.doc

HTML tags are normally comes in pairs with opening tags (or) start tag and ending tag (or) closing tags. Ex:(<sup>……</sup>)

HTML documents contains HTML tags and plain text. These documents are also called Web Pages.

All HTML files should be save with the extension of “.htm” (or) ”.html”

The purpose of the web browser like Internet Explorer, Netscape Navigator, Opera, Google Chrome, Safari etc., is to read the HTML document & display the ask web page.

The browser does not display HTML tags but use that tag to interpreate the content of the page.

Any HMTL tags files contains should be enclosed with.

<html> and </html>tag.

We are able to create an HTML file with any text editor’s like Notepad, Notepad++, Word or any IDE(Integrated

Page 5: Project on HTML.doc

Development Environment) for website like netbeans, my elipse, editplus etc.,

The syntax of a html file is

<html>

<head>

</head>

<body>

</body>

</html>

A HTML document has got two section.

Header section

Body section

1) Header section:-

Header section is use to.

A) Specific a title for a web page.

Page 6: Project on HTML.doc

B) To integrate CSS (Cascade Style Sheet).

C) To integrate Javascript (or) Vbscript.

D) To specific the auto redirection page with the time.

E) To describe meta tag with key word and description so that the site can be made search enable.

2) Body Section:-

Body section is use to specific the disable page contains that gets presented in the document design of the browser.

There are two types of tags.

1) Independent: We need not to close the tags.

2) Dependent: We need to close the tags.

There are ‘6’ levels of headers.

From “h1” to ”h6”

Ex:-

Page 7: Project on HTML.doc

<html>

<head>

<title>----------</title>

</head>

<body>

<h1>---------</h1>

<h2>---------</h2>

<h3>---------</h3>

<h4>---------</h4>

<h5>---------</h5>

<h6>---------</h6>

</body>

</html>

Page 8: Project on HTML.doc

“PROGRAM”

ON

“STUDENT REGISTRATION FORM”

Page 9: Project on HTML.doc

<html>

<head>

<title>REGISTRATION FORM</title>

</head>

<body bgcolor=”pink” text=”blue”>

<center>

<h1><b><u>STUDENT REGISTRATION FORM </u></b></h1><br>

<form>

<h4>REG.NO.<input name=”REG.NO.” size=”15” type=”number”></h4><br>

<h4>NAME<input name=”NAME” size=”20” type=”text”></h4><br>

<input checked=”unchecked” name=”answer” type=”radio” value=”Male”>Male

<input name=”answer” type=”radio” value=”Female”>Female<br><br>

Page 10: Project on HTML.doc

<h4>ADDRESS<textarea name=”ADDRESS” rows=”4” columns=”50”></textarea name></h4><br>

<h4>PHONE<input name=”PHONE” size=”25” type=”number”></h4><br>

<h4>EMAIL ID<input name=”EMAIL ID” size=”25” type=”text”></h4><br>

<h3><i>COLLEGE NAMES</i><h3>

<select multiple=”multiple” name=”colleges”>

<option>CMR</option>

<option>VNR</option>

<option>CBIT</option>

<option>MGIT</option>

<option>VGIT</option>

<input name=”colleges[]” type=”checkbox” value =”Civil”/>civil

<input name=”colleges[]” type=”checkbox” value =”EEE”/>EEE

Page 11: Project on HTML.doc

<input name=”colleges[]” type=”checkbox” value =”Mechanical”/>Mechanical

<input name=”colleges[]” type=”checkbox” value =”ECE”/>ECE

<input checked=”unchecked” name=”answer” type=”radio” value=”Full Time”>Full Time

<input name=”answer” type=”radio” value=”Part Time”>Part Time<br><br>

<input name=”Submit” type=”Submit” value=”Submit”/>

</form>

</center>

</body>

</html>

Page 12: Project on HTML.doc

“Output”

Page 13: Project on HTML.doc
Page 14: Project on HTML.doc