HTML Terminology
HTML
Here i m not explaining total HTML tutorial, but we can discuss the things which we are going to work on daily basis.
By using HTML we can develop webpage to fulfill the requirements. HTML is holding plenty of tags and tag attributes. These tags & attributes will work together to format the text request and response.
Thanks for your time.
Here i m not explaining total HTML tutorial, but we can discuss the things which we are going to work on daily basis.
By using HTML we can develop webpage to fulfill the requirements. HTML is holding plenty of tags and tag attributes. These tags & attributes will work together to format the text request and response.
Tag
|
Usage
|
<!-- -->
|
We can write comments
|
<a>
|
anchor tag for hyperlink
|
<align>
|
aligning left, right or center
|
<body>
|
body of the document
|
<br>
|
It breaks the line
|
<center>
|
Keeps the content in center
|
<form>
|
Useful for input fields
|
<h1>
|
First level heading
|
<head>
|
Document header
|
<html>
|
Document is html type
|
<input type>
|
Defines inputs for form
|
<p>
|
To define paragraph
|
<title>
|
Title of the document
|
By using above tags we can develop basic login web page:
<html>
<!--
First HMTL web page -->
<head>
<title>A
Login Page</title>
<head>
<body>
<h1
align="center">Nireekshan's login page</h1>
<p
align="right">
<img
src="nireekshan.jpg" width ="190"
height="200">
</p>
<form>
Name
: <input type="text" name="param1"/><br/>
Password
: <input type="password"
name="param1"/><br/><br/><br/>
<center>
<input
type="Submit">
</center>
</form>
</body>
<html>
Output :
-Nireekshan