0% found this document useful (0 votes)
22 views8 pages

Program: 1

Uploaded by

silverlye.k
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views8 pages

Program: 1

Uploaded by

silverlye.k
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 8

PROGRAM: 1

OBJECTIVE - Write HTML program for designing your institute website. Display departmental information of
your institute on the website.

THEORY:

HTML is the standard markup language for creating Web pages.

● HTML stands for Hyper Text Markup Language


● HTML describes the structure of Web pages using markup
● HTML elements are the building blocks of HTML pages
● HTML elements are represented by tags
● HTML tags label pieces of content such as "heading", "paragraph", "table", and so on
● Browsers do not display the HTML tags, but use them to render the content of the page.

SOURCE CODE:
OUTPUT
PROGRAM: 2
OBJECTIVE- Write HTML program to design an entry form for student details/employee
information/faculty details.

THEORY:
Forms are used in webpages for the user to enter their required details that are further send it to the
server for processing. A form is also known as web form or HTML form. Examples of form use are
prevalent in e-commerce websites, online banking, and online surveys etc.
An HTML form is used to collect data from the user and send it to the server. Consider a scenario
where we incorporate a Form section into our HTML webpage. Whenever the browser loads that
page and encounters the <form> element, it will generate controls on the page allowing users to enter
the required information according to the type of control.
Create an HTML Form
The HTML <form> tag is used to create an HTML form. There are a few more tags which are
required to create an actual form - all those tags are briefly described in this post.
The <form> element contains various predefined tags and elements termed as form controls.
SOURCE CODE:
OUTPUT:

You might also like