0% found this document useful (0 votes)
621 views19 pages

Practical File OF CAM: Submitted To: Dr. Rajesh Yadav (Submitted By: Jyoti Yadav 18MBA007 Mba-Sem-2

This document contains 10 programs demonstrating the use of various HTML tags. Program 1 shows how to send and receive emails. Programs 2-4 demonstrate formatting text and adding headings, lists, and images. Programs 5-7 cover adding frames, hyperlinks, and forms. Programs 8-10 showcase tables, table headings, and multi-row tables. In total, the 10 programs provide examples of essential HTML tags for building web pages.

Uploaded by

Jyoti Yadav
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)
621 views19 pages

Practical File OF CAM: Submitted To: Dr. Rajesh Yadav (Submitted By: Jyoti Yadav 18MBA007 Mba-Sem-2

This document contains 10 programs demonstrating the use of various HTML tags. Program 1 shows how to send and receive emails. Programs 2-4 demonstrate formatting text and adding headings, lists, and images. Programs 5-7 cover adding frames, hyperlinks, and forms. Programs 8-10 showcase tables, table headings, and multi-row tables. In total, the 10 programs provide examples of essential HTML tags for building web pages.

Uploaded by

Jyoti Yadav
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/ 19

PRACTICAL FILE

OF
CAM

SUBMITTED TO: SUBMITTED BY:


Dr. Rajesh Yadav Jyoti yadav
(Assistant Professor of 18MBA007
Applied CSE Department)
MBA- SEM-2
INDEX
S.NO PROGRAM DATE SIGNATURE REMARK
PROGRAME-1
How to send an e-mail:
• Firstly click on web Browser.

• Than click on address bar and write www.gmail.com.

• Than enter your e-mail ID and password into text box & click on Sign In
button.

• Click on compose mail command.

• Than enter sender ID, subject, message.

• That window looks like such window which is given below.


How to receive an e-mail:
• Firstly click on web Browser.

• Then click on address bar and write www.gmail.com.

• A window will open which looks like that below.

• Then enter user name and password & click on sign in button.

• Click on Inbox command.

• That window looks like such window that given below.


PEOGRAM-2
Create an HTML Document with the use of bgcolor, bold, italic &
underline tags:
<Html>

<Head> Farhad Hamidi <br>

<Title> my web page</title>

</head>

<body bg color="red">

<B> This text can be formatted as bold</B> <br>

<I> this text can be formatted as italic</I> <br>

<U> This text can be formatted as underline</u> <br>

</body>

</head>
PROGRAME-3
Create an HTML Document with the use of Heading tag:
<Html>

<Head> Farhad

<Title> my web page</title>

</head>

<Body >

<H1> HEADING</H1>

<H2> HEADING</H2>

<H3> HEADING</H3>

<H4> HEADING</H4>

</body>

</html>
PROGRAME-4
Create an HTML Document with the use Of unordered,
ordered& definition list tags:
<Html>

<Head> Farhad

<Title> my web page</title>

</head>

<Body >

<UL>

<LI> B.B.A</LI>

<LI> M.B.A</LI>

<LI> BCA</LI>

</UL>

<OL>

<LI> MANGO</LI>

<LI> BANANA</LI>

<LI> ORANGE</LI>

</OL>

<DL>

<DT>BRM</DT><DD> BUSINESS RESEARCH METHOD</DD>

<DT> CNI</DT><DD> COMPUTER NETWORK&INTERNET</DD>

<DT> HRM</DT><DD> HUMAN RESOURCE MANAGEMENT</DD>

</DL>
</BODY>

</HTML>
PROGRAME-5
Create an HTML Document with the use of image tag:
<Html>

<Head>

<Title> my web page </Title>

</head>

<Body>

<h1>FARHAD HAMIDI</h1>

<IMG src="Untitled.jpg">

</body>

</html>
PROGRAME-6
Create an HTML Document with the use of frameset tag:
<Html>

<Head>

<Title> my web page </Title>

</head>

<Body>

<h1>FARHAD HAMIDI</h1>

<IMG src="Untitled.jpg">

<IMG src="Untitled.jpg">

</body>

</html>
PROGRAME-7
Create an HTML Document with the use of hyperlink tag:
<Html>

<Head>

<Title> Farhad hamidi</TITLE>

<a href="man.html"> FOR VISITING NEW WINDOW PLEASE CLICK


HERE </a>

</html>
PROGRAME-8
Create an HTML Document with the use of tag:
<Html>

<Head>

<Title> Farhad</TITLE>

</HEAD>

<BODY>

<FORM>

FIRST NAME :<INPUT TYPE="TEXT" NAME="FIRST NAME"/><BR/>

LAST NAME :<INPUT TYPE="TEXT" NAME="LAST NAME"/><BR/>

CONTACT NO. :<INPUT TYPE="TEXT" NAME="CONTACT NO."/><BR/>

ADDRESS :<INPUT TYPE="TEXT" NAME="ADDRESS"/><BR/>

<FORM><BR/>

<INPUT TYPE="RADIO"NAME="SEX" VALUE="MALE"/>

<LABLE FOR="MALE">MALE</LABLE><BR/>

<INPUT TYPE="RADIO"NAME="SEX"VALUE="FEMALE"/>

<LABLE FOR="FEMALE">FEMALE</LABLE>

</FORM>

WHICH VEHICLE DO YOU HAVE

<FORM>

<INPUT TYPE="CHECKBOX"NAME="VEHICLE"VALUE="BIKE"/> I HAVE A


BIKE</BR>

<INPUT TYPE="CHECKBOX"NAME=VEHICLE"VALUE="CAR"/> I HAVE A


CAR<BR/>
<INPUT TYPE="CHECKBOX"NAME=VEHICLE"VALUE="CAR"/> I HAVE A
BUS<BR/>

</BODY>

</html>
Programe-9
Create an HTML Document with the use of table tag:
<HTML>

<HEAD>

<TITLE> Farhad Hamidi</TITLE>

</HEAD>

<BODY>

<TABLE BORDER="50">

<TR>

<TD>Farhad</TD>

<TD>Shalu</TD>

</TR>

<TD>Divyandhi</TD>

<TD>Neha</TD>

</TR>

</TABLE>

</BODY>

</HTML>
PROGRAM-10
Create an HTML Document with the use of table heading tag:
<HTML>
<HEAD>
<TITLE> Farhad Hamidi</TITLE>
</HEAD>
<BODY>
<TABLE BORDER="10">
<TR>
<TH>NAME</TH>
<TH>CLASS</TH>
</TR>
<TD>Farhad</TD>
<TD>MBA2ND SEMESTER</TD>
</TR>
<TD>Shalu</TD>
<TD>MBA2ND SEMESTER</TD>
</TR>
<TD>Divyanshi</TD>
<TD>MBA2ND SEMESTER</TD>
</TR>
<TD>Neha</TD>
<TD>MBA2ND SEMESTER</TD>
</TR>
<TD>Payel</TD>
<TD>MBA2ND SEMESTER</TD>
</TR>
<TD>Abishik</TD>
<TD>MBA2ND SEMESTER</TD>
</TR>
<TD>Bashir</TD>
<TD>MBA2ND SEMESTER</TD>
</TR>
<TD>Ashrafdine</TD>
<TD>MBA2ND SEMESTER</TD>
</TR>
</TABLE>
</BODY>
</HTML>
PRACTICAL FILE
OF
CAM

SUBMITTED TO: SUBMITTED BY:


Dr. Rajesh Yadav Varsha joon
(Assistant Professor of 18MBA031
Applied CSE Department)
MBA- SEM-2

You might also like