Experiment No 1

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

DEPARTMENT OF COMPUTER SCIENCE & TECHNOLOGY

LAB FILE
FOR

SUBJECT: WEB AND ITS APPLICATIONS LAB


SUBJECT CODE: BCP262

Department of COMPUTER SCIENCE & TECHNOLOGY


SHARDA UNIVERSITY, GREATER NOIDA

1
BCP262(Web and its Applications Lab)
List of Experiments:
1 Write a simple HTML code for Introduction.
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

2
BCP262(Web and its Applications Lab)
Experiment No 1: Create a HTML Basic Page for Students Information.
Date: 23 July 2020

Procedure:
Create an html page named as “Personal.html”
Add the following tags detail.
1. Set the title of the page as “Student Information”
2. Within the body perform the following
a) Different heading tags ( h1 to h6)
b) Paragraph
c) Horizontal line
d) Line Break
e) Block Quote
f) Pre tag
g) Different Logical Style ( <b>, <c>, <sub>, <sup>….)

Solution :-
In notepad type the necessary code & save with the file name mentioned with .html
extension.

Code:
<html>
<head>
<title> Student Information </title>
</head>
<body>
<p>
hiiiii my name is html page...<br>

this is bca264 first lab g1


</p>

<p>

second paragraph

</p>
</body>
</html>

Output:

3
BCP262(Web and its Applications Lab)
4
BCP262(Web and its Applications Lab)

You might also like