0% found this document useful (0 votes)
32 views38 pages

Ecom Record 2019

The document contains examples of HTML code implementing various formatting tags, elements, and structures including headings, paragraphs, lists, tables, images, links, and more. The examples demonstrate features such as styling text, embedding images, creating ordered and unordered lists, adding columns and rows to tables, inserting hyperlinks, and other common HTML markup.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
32 views38 pages

Ecom Record 2019

The document contains examples of HTML code implementing various formatting tags, elements, and structures including headings, paragraphs, lists, tables, images, links, and more. The examples demonstrate features such as styling text, embedding images, creating ordered and unordered lists, adding columns and rows to tables, inserting hyperlinks, and other common HTML markup.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 38

E-Commerce Practical Record(B.

Com –III year VI sem)


1.
<html>
<head>
<title>Program1/Formatting Tags</title>
</head>
<body>
Name:<input type="text"><br>
Address:<input type="text"><br>
&nbsp;&nbsp;&nbsp;&nbsp;<input type="submit" value="submit">
</body>
</html>
Output:

1.
<html>
<head>
<title>Program11/Tables</title>
</head>
<body bgcolor="yellow">
<h1 align="center" style="color:blue"><u>TABLE</u></h1>
<table cellspacing="5" cellpadding="5" align="center" border="6" width="500px"
bgcolor="pink">
<tr>
<th>Time/Day</th>
<th>9:00-9:45</th>
<th>9:45-10:30</th>
<th>10:30-11:15</th>
<th>11:15-12:00</th>
<th>12:00-12:45</th>
<th>12:45-1:00</th>
<th>1:00-1:45</th>
<th>1:45-2:30</th>
</tr>

<tr>
<td>Monday</td>
<td>Business Law</td>
<td>Banking and theory</td>
<td>Practise of Insurance</td>
<td>Excel Foundation</td>
<td>Banking and theory</td>
<td rowspan="7" style="font-size:40px;">L<br>U<br>N<br>C<br>H</td>
<td>Web Technologies</td>
<td>Computer Accountancy</td>
</tr>
<tr>
<td>Tuesday</td>
<td>Business Law</td>
<td>Banking and theory</td>
<td>Practise of Insurance</td>
<td>Excel Foundation</td>
<td>Banking and theory</td>

<td>Web Technologies</td>
<td>Computer Accountancy</td>
</tr>
<tr>
<td>Wednsday</td>
<td>Business Law</td>
<td>Banking and theory</td>
<td>Practise of Insurance</td>
<td>Excel Foundation</td>
<td>Banking and theory</td>
<td>Web Technologies</td>
<td>Computer Accountancy</td>
</tr>
<tr>
<td>Monday</td>
<td>Business Law</td>
<td>Banking and theory</td>
<td>Practise of Insurance</td>
<td>Excel Foundation</td>
<td>Banking and theory</td>
<td>Web Technologies</td>
<td>Computer Accountancy</td>
</tr>
<tr>
<td>Thursday</td>
<td>Business Law</td>
<td>Banking and theory</td>
<td>Practise of Insurance</td>
<td>Excel Foundation</td>
<td>Banking and theory</td>
<td>Web Technologies</td>
<td>Computer Accountancy</td>
</tr>
<tr>
<td>Friday</td>
<td>Business Law</td>
<td>Banking and theory</td>
<td>Practise of Insurance</td>
<td>Excel Foundation</td>
<td>Banking and theory</td>
<td>Web Technologies</td>
<td>Computer Accountancy</td>
</tr>
<tr>
<td>Saturday</td>
<td>Business Law</td>
<td>Banking and theory</td>
<td>Practise of Insurance</td>
<td>Excel Foundation</td>
<td>Banking and theory</td>
<td>Web Technologies</td>
<td>Computer Accountancy</td>
</tr>
</table>
</body>
</html>
Output:-

Output:-

2. <html>
<head>
<title>Program1/Formatting Tags</title>
</head>
<body>
Name:<input type="text"><br>
Address:<input type="text"><br>
State:<input type="text"><br>
City:<input type="text"><br>
Pincode:<input type="text"><br>
&nbsp;&nbsp;&nbsp;&nbsp;<input type="text" value="Place your order"><br>

</body>
</html>
Output:

3.
<head>
<title>Program4/Formatting Tags</title>
<style>
h1
{
color:red;
font-family:algerian;
}
</style>
</head>
<body>
<h1>Lal Bahadur College</h1>
<h1>Mehdipatnam</h1>
</body>
</html>

+
4.
<head>
<title>Program4/Formatting Tags</title>
</head>
<body>
<ol type="1">
<li>Bcom Computers</li>
<li>Bcom General(E/M)</li>
<li>Bcom General(T/M)</li>
</ol>
</body>
</html>

5.
<head>
<title>Program4/Formatting Tags</title>
</head>
<body>
<table border="2">
<tr>
<td>Desert Image</td>
<td>Lal Bahadur</td>
</tr>
<tr>
<td>Lal Bahadur</td>
<td><img src="C:\Users\Public\Pictures\Sample Pictures\Koala.jpg" height="50"></td>
</tr>
</table>
</body>
</html>
6.
<head>
<title>Program4/Formatting Tags</title>
</head>
<body>
<a href="www.amazom.com">Link to Amazon from Here...</a>
</body>

7.
<head>
<title>Program4/Formatting Tags</title>
</head>
<body>
<marquee direction="right">Lal BAhadur College</marquee></br>
<marquee direction="left">Lal BAhadur College</marquee></br>
<marquee direction="up">Lal BAhadur College</marquee></br>
<marquee direction="down">Lal BAhadur College</marquee>
</body>

8.

<html>
<head>
</head>
<table border="2">
<tr>

<td colspan="2"><center>Desert Image</center></td>


</tr>
<tr>
<td>This webpage displaying desert image</td>
<td><img src="C:\Users\Public\Pictures\Sample Pictures\desert.jpg" height="50"></td>
</tr>
</table>
</body>
</html>

9.

<html>
<head>
</head>
<body>
(a+b)<sup>2</sup>=a<sup>2</sup>+2ab+b<sup>2</sup><br>
H<sub>2</sub>SO<sub>4</sub>
</body>
</html>
10.

<html>
<head>
</head>
<body>
<table border=2>
<tr>
<td>
<table border=2>
<tr>
<td>Rubber</td>
<td>Baby</td>
</tr>
<tr>
<td>Buggy</td>
<td>Bumpers</td>
</tr>
</table>
</td>
<td>
<table border=2>
<tr>
<td>She</td>
<td>sells</td>
</tr>
<tr>
<td>sea</td>
<td>shells</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>

11.

<html>
<head>
</head>
<body>
<h1><img src="E:\Hari\Untitled.png" height="100">Lal Bahadur Degree College,<br>Near Bus
Depot,<br>Mehdipatnam.<br>
<center>Contact No:7780402102</center></h1>

</body>
</html>
12.

<html>
<head>
</head>
<body>
<dl>
<dt>E-Banking
<dd>also known as online banking
<dt>E-Advertisement
<dd>also known as online Advertisement
<dt>E-Shooping
<dd>also known as online shopping
<dt>E-Marketing
<dd>also known as online marketing
<dt>E-Entertainment
<dd>also known as online Entertainment
</dl>

</body>
</html>
13.

<html>
<head>
</head>
<body>
<ul type="disc">
<li>Practice of General Insurance</li>
<li>Sector of Indian Econamy</li>
<li>G.S.T</li>
<li>Company Law</li>
<li>Managerial Accounting</li>
<li>Commerce Lab</li>
<li>E-commerce</li>
<li>RDBMS</li>
</ul>

</body>
</html>
14.
<html>
<head>
</head>
<body>
<marquee><img src="E:\Hari\college photo.jpg" height="100"></marquee>
</body>
</html>

15.

<html>
<head>
</head>
<body>
<p>Click on the button to redirect to LB College website</p>
<button title="bt" class="c" onclick="window.open('http//www.lbcolleges.com','_blank');return
false;">LBDC</button>
</body>
</html>

16.

<html>
<head>
</head>
<body>

<p>Practice of General Insurance</p>


<hr color="red" size="2">
<p>Sector of Indian Econamy</p>
<hr color="blue" size="3">
<p>G.S.T</p>
<hr color="pink" size="1">
<p>Company Law</p>
<hr color="green" size="3">
<p>Managerial Accounting</p>
<hr color="orange" size="4">
<p>Commerce Lab</p>
<hr color="yelow" size="1">
<p>E-commerce</p>
<hr color="meroon" size="2">
<p>RDBMS</p>
</ul>

</body>
</html>
17.

<html>
<head>
</head>

<frameset cols="25%,25%,25%,*">
<frame src="f1.html">
</frame>
<frame src="f2.html">
</frame>
<frame src="f3.html">
</frame>
<frame src="f4.html">
</frame>
</frame>

</html>
F1.html Program
<body bgcolor="red">
</body>

F2.html Program
<body bgcolor="red">
</body>
F3.html Program
<body bgcolor="red">
</body>
F4.html Program
<body bgcolor="red">
</body>

18.

<html>
<head>
</head>

<frameset rows="25%,25%,25%,*">
<frame src="f1.html">
</frame>
<frame src="f2.html">
</frame>
<frame src="f3.html">
</frame>
<frame src="f4.html">
</frame>
</frame>

</html>
F1.html Program
<body bgcolor="red">
</body>

F2.html Program
<body bgcolor="red">
</body>
F3.html Program
<body bgcolor="red">
</body>
F4.html Program
<body bgcolor="red">
</body>

19.

20.

<html>
<head>
</head>

<body>
<table border="2">
<tr>
<td bgcolor="orange">Sandhya</td>
<td bgcolor="red">Amulya</td>
</tr>
<tr>
<td bgcolor="blue">Vinod</td>
<td bgcolor="green">Praveen</td>
</tr>
</table>
</body>
</html>
21.
<html>
<head>
</head>
<body>
<table border="2">
<tr>
<td colspan="3"><center>TOP</center></td>
</tr>
<tr>
<td rowspan="3">middle left</td>
<td>middle up</td>
<td rowspan="3">middle right</td>
</tr>
<tr>
</tr>
<tr>
<td>middle down</td>
</tr>
<tr>
<td colspan="3"><center>Down</center></td>
</tr>
</table>
</body>
</html>
22.

<html>
<head>
</head>
<body>
<form action="paymentpage.php">
Mode of Payment:&nbsp;Credit card<input type="radio" name="payment">&nbsp;Debit card<input
type="radio" name="payment">&nbsp;Online Transfer<input type="radio" name="payment">
</form>
</body>
</html>

23.

<html>
<head>
</head>
<body>
<form>
Enter your card details<br>
Enter card number:<input type="text" name="cn"><br>
Expiry date:
<select>
<option>Select Month</option>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>..</option>
<option>..</option>
<option>12</option>
</select>
<select>
<option>Select year</option>
<option>2019</option>
<option>2020</option>
<option>2021</option>
<option>2022</option>
<option>2023</option>
<option>2024</option>
</select><br>
Enter cvv number:<input type="text" name="cn"><br>
<input type="submit" value="submit">
</form>
</body>
</html>
24.
<html>
<head>
</head>
<body>
<form action="paymentpage.php">
Name:<input type="text" name="name"><br>
Address:<input type="text" name="adrs"><br>
State:<input type="text" name="st"><br>
Pincode:<input type="text" name="pin"><br>
Magzine:<input type="text" name="num"><br>
Subscription:<input type="radio" name="sb">1 Year &nbsp;<input type="radio" name="sb"> 2 year<br>
<input type="submit" name="sb" value="Place Your Order">
</form>
</body>
</html>
25.
<html>
<head>
</head>
<body>
<a href="D:\sdetails.xlsx">Get student detais in excel sheet</a>
</body>
</html>

26.

<html>
<head>
</head>
<body>
<body>
<dl>
<dt>B2B
<dd>Business to Business
<dt>B2C
<dd>Business to Consumer
<dt>C2B
<dd>Consumer to Business
<dt>C2C
<dd>Consumer to Consumer
</dl>
</body>
</html>

27.

<html>
<head>
</head>
<body>
<p align="left" style="color:red" >This paragraph is explaining about Facebook
This paragraph is explaining about Facebook
This paragraph is explaining about Facebook</p>
<hr size="3">
<p align="center" style="color:blue">This paragraph is explaining about Twitter
This paragraph is explaining about Twitter
This paragraph is explaining about Twitter</p>

<hr size="4">
<p align="right" style="color:green">This paragraph is explaining about Linked in This paragraph is
explaining about Linked in
This paragraph is explaining about Linked in</p>
</body>
</html>
28.

<html>
<head>
</head>
<body>
<button title="bt" class="c" onclick="window.open('E:\Hari\Ecom-19\b2b.html','_blank');return
false;">B2B</button>
<button title="bt" class="c" onclick="window.open('E:\Hari\Ecom-19\b2c.html','_blank');return
false;">B2C</button>
<button title="bt" class="c" onclick="window.open('E:\Hari\Ecom-19\c2b.html','_blank');return
false;">C2B</button>
<button title="bt" class="c" onclick="window.open('E:\Hari\Ecom-19\c2c.html','_blank');return
false;">C2C</button>
</body>
</html>

29.
<html>
<head>
<link rel="stylesheet" type="text/css" href="h.css">
</head>
<body>
<body>
<h1>
My Favourite Lecturer is HARI SIR
</h1>
</body>
</html>

CSS Program:

h1
{
font-size:30px;
color:red;
font-family:algerian;
}

30.
<html>
<head>

</head>
<body>
<body>
<marquee direction="right" loop="3">E-Commerce</marquee>
</body>
</html>
31.

<html>
<head>

</head>
<body>
Click on college image to redirect to college website<a href="www.lbcollege.com"><img
src="E:\Hari\college photo.jpg" height="300" width="300">
</html>

32.

<html>
<head>

</head>
<body>
<h6 style="color:blue;background-color:yellow">Lal Bahdur degree College</h6>
<hr size="6">
<p>This college is providing many facilities to students like..<br>
Computer Lab<br>
Library<br>
Commerce Lab<br>
Filter water
Games<br>
Seminor hall<br>
</p>
</html>

33.
<html>
<head>
</head>
<body>
<button title="bt" class="c" onclick="window.open('E:\Hari\Ecom-19\Home.html','_blank');return
false;">Home</button>
<input type="button" value="About us" onclick="window.open('E:\Hari\Ecom-19\About us.html')">
<button title="bt" class="c" onclick="window.open('E:\Hari\Ecom-19\Home.html','_blank');return
false;">Courses</button>
<input type="button" value="Feedback" onclick="window.open('E:\Hari\Ecom-19\About us.html')">
<button title="bt" class="c" onclick="window.open('E:\Hari\Ecom-19\Home.html','_blank');return
false;">Contact Us</button>
</body>
</html>
34.
<html>
<head>
</head>
<body>
My Favourite South Indian Dishes:
<select>
<option>Select dishes</option>
<option>Sambar rice</option>
<option>Curd rice</option>
<option>Lemon rice</option>
</select>
</body>
</html>
35.

<html>
<head>
</head>
<body>
<marquee>Lal Bahadur Degree College
</marquee>
<marquee direction="right">Lal Bahadur Degree College
</marquee>
</body>
</html>
36.
<html>
<head>
</head>
<body>
<p style="margin-left:120px">LAL BAHADUR COLLEGE</p>
<p>LAL BAHADUR COLLEGE &nbsp;<img src="C:\Users\Public\Pictures\Sample Pictures\Koala.jpg"
height="50">&nbsp;LAL BAHADUR COLLEGE</p>
<p style="margin-left:120px">LAL BAHADUR COLLEGE</p>
</body>
</html>

37.

<html>
<head>
</head>
<body>
<p align="left" style="color:red" >This paragraph is explaining about E-Marketing
This paragraph is explaining about E-Marketing
This paragraph is explaining about E-Marketing</p>
<hr size="3">
<p align="center" style="color:blue">This paragraph is explaining about E-Shopping
This paragraph is explaining about E-Shopping
This paragraph is explaining about E-Shopping</p>

<hr size="4">
<p align="right" style="color:green">This paragraph is explaining about E-Banking This paragraph is
explaining about E-Banking
This paragraph is explaining about E-Banking</p>
<p align="justify" style="color:green">This paragraph is explaining about E-Learning This paragraph is
explaining about E-Learning
This paragraph is explaining about E-Learning</p>

</body>
</html>

38.

39.

<html>
<head>
</head>
<body>
<form>
Login Here...<br>
Username: <input type="text" name="un"><br>
Password: <input type="password" name="pw"><br>
<input type="submit" value="Submit details">
</form>
</body>
</html>
40.

<html>
<head>
</head>
<body>
<h6 style="color:blue;font-family:verdana">LAL BAHADUR COLLEGE
<img src="C:\Users\Public\Pictures\Sample Pictures\desert.jpg" height="50" alt="copyright_symbol">
<img src="C:\Users\Public\Pictures\Sample Pictures\desert.jpg" height="50"
alt="trademark_symbol"></h6>
</body>
</html>

41.
<html>
<head>
</head>
<body>
<h3><center>Student Information</center></h3>
<form name="f" action="abc"><br>
Sno:<input type="text" name="sn"><br>
Name:<input type="text" name="nm"><br>
marks in web:<input type="text" name="m1"><br>
marks in Excel:<input type="text" name="m2"><br>
marks in Rdbms:<input type="text" name="m3"><br>
<input type="submit" value="submit"> &nbsp;<input type="reset">
</form>
</body>
</html>

42.
<html>
<head>
</head>
<body>
<h3><center>Feedback Form</center></h3>
<p>Students give yours feedback from here...
<form name="f" action="abc">
Excellent <input type="checkbox" name="sn">
Very Good:<input type="checkbox" name="nm">
Good <input type="checkbox" name="m1">
average<input type="checkbox" name="m2">
Bad<input type="checkbox" name="m3">
</form>
</body>
</html>

43.

<html>
<head>
</head>
<body>
<form>
Universities in Telengane:
<select>
<option>Select University</option>
<option>Osmania University</option>
<option>Jawaharlal Nehru University</option>
<option>Dr.B.R Ambedkar University</option>
<option>Telengane University</option>
<option>Kakatiya University</option>
<option>University Of Hyderabad</option>
<option>Palamuru University</option>
<option>Satavahana University</option>

</select>
</form>

</body>
</html>
44.

<html>
<head>
</head>
<body>
<h4>Image with left and right side text</h4><br><br>
<p>LAL BAHADUR COLLEGE &nbsp;<img src="C:\Users\Public\Pictures\Sample Pictures\Koala.jpg"
height="50">&nbsp;LAL BAHADUR COLLEGE</p>
</body>
</html>

47.
<html>
<head>
</head>
<body>
<h3>Student Examination Registration Form</h3>
<form action="abc" name="form">
Student Name:<input type="text" name="sname"><br>
Father Name:<input type="text" name="fname"><br>
Course :<select>
<option>Select course</option>
<option>B.Com Computers</option>
<option>B.Com General</option>
</select><br>
Semester: <input type="checkbox" name="sm2"> 2nd sem &nbsp;<input type="checkbox"
name="sm4">&nbsp; 4th sem<input type="checkbox" name="sm6"> 6th sem<br>
<input type="Submit" Value="Submit Form">
</form>
</body>
</html>

48.

<html>
<head>
</head>
<body>
<h2>Courses in College(using nested list)</h2>
<ol type="1">
<li>B.Com
<ul type="disc">
<li>Computers</li>
<li>General</li>
</ul>
</li>
<li>B.Sc
<ul type="circle">
<li>MPCs</li>
<li>MPC</li>
</ul>
</li>

<li>B.A
<ul type="disc">
<li>HPP</li>
<li>EPP</li>
</ul>
</li>
</ol>
</body>
</html>

49.

<html>
<head>
</head>
<body>
<table border=2 cellspacing="5" cellpadding="5">
<tr>
<td rowspan="2">Program48</td>
<td>Program48</td>
<td>Program48</td>
</tr>
<tr>
<td>Program48</td>
<td>Program48</td>
</tr>
<tr>
<td colspan="2">Program48</td>
<td>Program48</td>
</tr>
</table>
</body>
</html>

50.

<html>
<head>
</head>
<body>
Image with Attributes<br>
<img src="E:\Hari\college photo.jpg" width="200" height="200" alt="college image" border="3">
</body>
</html>

You might also like