Project Creation
Project Creation
P.AJAYPRAVEEN
REGNO:CB18C65430
Under the Guidance of
Prof, A. Raj Priya M.Com, M.Phil.,
B.Ed., Assistant Professor,
Post Graduate Department of Commerce (CA)
CERTIFICATE
Date:
This to certify that the project work entitled “A PROJECT REPORT ON OVER VIEW OF HTML (WEB SITE
CREATION)IN INFOSYS COMPUTER CENTER IN THANJAVURDISTRICT,TAMILNADU”,
Submitted by MS. P.AJAY PRAVEENReg.No: CB18C65430,Final year B.com (CA) Student, Annai Vailankanni
Arts And Science And College,Thanjavur-613007, Tamil nadu is a bonifide record of research work done by Her
under by guidance and supervision for the award of the degree of Bachelor of commerce (CA). I futher certify that
this project work represents the independent work on the part of the candidate.
P.AJAY PRAVEEN,
Reg. No: CB18C65430,
Final Year B. Com (CA), PG Department of Commerce (CA).
DECLARATION
I P. AJAY PRAVEEN REG. CB18C65430, Final Year B.Com(CA), PG Department of
Commerce, Annai Vailankanni Arts and Science College, Thanjavur - 613007, Tamil Nadu do
Here by declare that the work embodied in this project work entitled “A PROJECT REPORT
ON ROLE ON ELECTRONIC PAYMENT SYSTEM ON CUB BANK IN THANJAVUR
DISTRICT,TAMILNADU", submitted by me has been originally carried out by me for the award of the Degree
of Bachelor of Commerce (CA) under the guidance and supervision of Prof, A.RAJ PRIYA M.Com., M.Phil.,
B.Ed., Asstistant Professor, Post Graduate Department of Commerce(CA)., Annai Vailankanni Arts and Science
College, Thanjavur-
613007.
Place: Thanjavur Signature of the candidate
(P. AJAY PRAVEEN)
ACKNOWLEDGEMENTS
First and foremost, I would like to praise and thank the Patroness of our College "OUR LADY OF GOOD
HEALTH", Vailankanni, popularly and lovingly known as, Annai Vailankanni", ie., Mother Vailankanni, the
almighty, who has granted countless blessing, knowledge, and has made me excel and successful in all my academic
pursuits.
I would like to offer my profound regards to Most Rev.Fr. Dr.S.SEBASTIAN PERIANNAN, M.A., M.A., Ph.D.,
Correspondent and Secretary of Annai Vailankkani Arts and Science College, Rev. Fr. Dr.S.AROCKIADOSS, M.Sc.,
M.A., M.A., M.Ed.,M.Phil., Ph.D., Administrator of Annai Vailankanni Arts and Science College,
Dr.P.PHILOMINATHAN,M.SC., M.Phil., Ph.d., Principal ,Annai Vailankkani Arts and Science College, Dr.S.Vijaya
kumar , M.Com., M.Phil., B.Ed., NET., Ph.D., Dean of arts annai vailankanni arts and science and college for his
blessings and giving me the excellent opportunity to undergo my project work in the college of excellence.
I am indebted and owe my due respects to Dr.V. MAHESH,M.Com., M.Phil., Mba.,Ph.D., HOD and Research
Advisor, Post Graduate Department of Commerce , Annai Vailankkani Arts and Science College, Thanjavur for his
kind support and encouragement throughout the course of my research work.
I would like to place on record my heartfelt thanks and deep sense of gratitude to my Prof,A.RAJ PRIYA M.Com.,
M.Phil., B.Ed., Asst.Professor, Post Graduate Department of Commerce., Annai Vailankanni Arts and Science
College, Thanjavur. Her positive outlook and confidence in my research work inspired me and gave me confidence
and careful editing contributed enormously to the production of this projcct work.
These acknowledgments would not be complete without thanking my Family For their constant support and care.
Today I feel that my parents Hardwork and dreams have been blossomed. My father's goodness is higher than the
mountain and my mother's goodness is deeper than the sea. I take this opportunity to express the profound gratitude
from my deep heart to my lovable Father and Mother, and all my friends for their blessings love and continuous
support both spiritually and materially.
(P.AJAY PRAVEEN)
HTML stands for Hypertext Markup Language, and it is the most widely used language to
write Web Pages.
Hypertext refers to the way in which Web pages (HTML documents) are linked
together. Thus, the link available on a webpage is called Hypertext.
As its name suggests, HTML is a Markup Language which means you use HTML to
simply *mark-up" a text document with tags that tell a Web browser how to structure
it to display.
Originally, HTML was developed with the intent of defining the structure of documents like
headings, paragraphs, lists, and so forth to facilitate the sharing of scientific information
between researchers.
Now, HTML is being widely used to format web pages with the help of different tags
available in HTML language.
</body>
</ h ■ ll)
Either you can use Try It option available at the top right corner of the code box to check
the result of this HTML code, or let's save it in an HTML file testhtm using your favorite text
editor. Finally open it using a web browser like Internet Explorer or oogle Chrome, or Firefox
etc. It must show the following output:
no
inahfsiz I Desktoormuhtm
• 119 ❑ rel. e *
This is a heading
Dismost content goes bon.
HAIL Tags
As told earlier, FITML is a markup language and makes use of various tags to format the
content. These tags are enclosed within angle braces <Tag Name>. Except few tags, most
of the tags have their corresponding closing tags. For example, <htrni> has its closing
tag<fhtml> and <body> tag has its closing tag </body> tag etc.
Tag Description
<!DOCTYPE...>
This tag defines the document type and HTML version.
This tag encloses the complete HTML document and mainly comprises
<html> of document header which is represented by <head >w<ihead> and
document body which is represented by <body >...</body> tags.
This tag represents the document's header which can keep other HTML
<head> tags like <title>, <link> etc.
The <title> tag is used inside the <head> tag to mention the
<title> document title.
This tag represents the document's body which keeps other HTML tags
<body> like <hi>, <div>, <p> etc.
To learn HTML, you will need to study various tags and understand how they behave, while
formatting a textual document. Learning HTML is simple as users have to learn the usage of
different tags in order to format the text or images to make a beautiful webpage.
World Wide Web Consortium (W3C) recommends to use lowercase tags starting from HTML
4,
<html>
<head>
<body>
</html>
We will study all the header and body tags in subsequent chapters, but for now let's see what
is document declaration tag,
There are many other declaration types which can be used in HTML document depending on
what version of HTML is being used. We will see more details on this while discussing
<!DOCTYPE...> tag along with other HTML tags.
I. _2. HTML-BASIC TAGS
Heading Tags
Any document starts with a heading. You can use different sizes for your headings. HTML
also has six levels of headings, which use the elements <hi>, <h2>, <h3>, <h4>, <h5>,
and <h6>. While displaying any heading, browser adds one line before and one line after
that heading.
Example
ODOCTYPE html>
<html>
<head>
<title>Heading Example</title>
</head>
<body>
This is heading 4
This is heading S
nu, r. huid,rig:
Paragraph Tag
The <p> tag offers a way to structure your text into different paragraphs. Each paragraph of
text should go in between an opening <p> and a closing </p> tag as shown below in the
example:
Example
<1DOCTYPE html>
<html><head><title>Paragraph Examples/title>
</body>
< /html>
:
The <br f> tag has a space between the characters br and the forward slash. If you omit this
space, older browsers will have trouble rendering the line break, while if you miss the forward
slash character and just use <br> it is not valid in XHTML.
Example
ODOCTYPE html>
<html>
<head>
<title>line Break Example<ititle>
</head>
<body>
<p>Hello<br />
H e l lo
Thanks
Centering Content
You can use <center> tag to put any content in the center of the page or any table cell.
Example
IDOCTYPE html>
<html>
<head>
ctitle>Centring Content Example</title>
</head>
<body>
</center>
c/body>
Horizontal
Unes
Horizontal lines are used to visually break-up sections of a document. The <hr> tag creates
a line from the current position in the document to the right margin and breaks the line
accordingly.
For example, you may want to give a line between two paragraphs as in the given example
below:
Example
ODOCTYPE html>
c/body> c/html>
This will produce the following result:
Again <hr tag is an example of the empty element, where you do not need opening and
The <hr i> element has a space between the characters hr and the forward slash. If you
omit this space, older browsers will have trouble rendering the horizontal line, while if you
miss the forward slash character and just use <hr > it is not valid in XHTML
Preserve Forrnatti
Sometimes, you want your text to follow the exact format of how it is written in the HTML
document. In these cases, you can use the preformatted tag <pre>.
Any text between the opening <pre> tag and the closing </pre> tag wig preserve the
formatting of the source document.
Example
<!DOCTYPE html>
<html> <head>
<body> <pre>
Try using the same code without keeping it inside <pre.../pre > tags
Nonbreaking Spaces
Suppose you want to use the phrase "12 Angry Men." Here, you would not want a browser to
split the '12. Angry' and "Men" across two lines:
In cases, where you do not want the client browser to break text, you should use a
nonbreaking space entity instead of a normal space. For example, when coding the
"12 Angry Men" in a paragraph, you should use something similar to the following code:
Example
ODOCTYPE html)
</head>
<body>
</html>
3. HTML-ELEMENTS
An HTML element is defined by a starting tag. If the element contains other content, it
ends with a closing tag, where the element name is preceded by a forward slash as shown
below with few tags:
<br i>
Example
<IDOCTYPE html>
<html>