Project Gautam Sir
Project Gautam Sir
Project Gautam Sir
Practical File
WEB DESIGNING
(BCA-307)
Session 2022-2025
1
BCA-307(Web Designing lab) 1322310
Practical 01
Aim: Create a Webpage depicting your own Resume using basic HTML tags and
list tags.
Procedure:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RESUME</title>
</head>
<body>
<h1 align="centre">RESUME</h1>
<h3>Personal Details</h3>
</P></PRE>
</ul>
<h1 >SKILLS</h1>
<LI>Leadership</LI>
2
BCA-307(Web Designing lab) 1322310
<li>Quick Learner</li>
<li>C language</li>
<li>C++ language</li>
<li>front-end development</li>
</UL>
<h1>EDUCATION QUALIFICATION</h1>
<table width="100%">
<tr align="left">
<th>Degree</th>
<th>Percentage</th>
<th>Board</th>
</tr>
<tr align="left">
<Td><strong> Matriculation-2019</strong><br>
<TR align="left">
</td>
</tr>
<TR align="left">
</table>
<h1>HOBBIES</h1>
3
BCA-307(Web Designing lab) 1322310
</UL>
<li>fresher</li>
<h2>Strength</h2>
<li>Punctuality</li>
<li>Hard Working</li>
<h2>Declaration</h2>
false then I am totally responsible for further action which is accountable regarding this </p>
</body>
</html>
4
BCA-307(Web Designing lab) 1322310
OUTPUT
5
BCA-307(Web Designing lab) 1322310
Practical 02
Aim: Create a format divided into 3 sections using division tag and add CSS to
differentiate them from each other
Procedure:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<div class="a">div1</div>
<div class="b">div2</div>
<div class="c">div3</div>
</body>
</html>
.a{
height: 100px;
Width: 800px;
Background-color:orange;
Margin: 2px;
border-radius: 10px;
Padding-left:20px;
6
BCA-307(Web Designing lab) 1322310
.b{
height: 100px;
width: 800px;
background-color: white;
Margin: 2px;
border-radius: 10px;
padding-left:20px;
.c{
height: 100px;
width: 800px;
background-color:green;
margin:2px;
border-radius: 10px;
padding-left:20px;
Output
7
BCA-307(Web Designing lab) 1322310
Practical 03
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<OL>Web technologies
<li>HTML</li>
<li>CSS</li>
<li>java script
</li>
</ol>
<ul>DSA
</li><li>linked list</li><li>stack</li><li>Queue</li>
</ul>
</body>
</html>
8
BCA-307(Web Designing lab) 1322310
OUTPUT
9
BCA-307(Web Designing lab) 1322310
Practical 04
Procedure:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head><body>
<p>A natural disaster is the highly harmful impact on a society or community following a natural
hazard event. Some examples of natural
hazard events include: flooding, drought, earthquake, tropical cyclone, lightning, tsunami,
volcanic activity, wildfire.
A natural disaster can cause loss of life or damage property, and typically leaves economic
damage in its wake. </p>
<a href="https://music.apple.com/au/album/storms-natural-disasters-sound-
effects/544091487">click here to play audio</a><br>
</body></html>
OUTPUT
10
BCA-307(Web Designing lab) 1322310
Practical 05
Aim: Create a Menu or Table of Content webpage. Each menu item should
load a different webpage.
Procedure:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<tr align="left">
<th>google</th>
</tr>
<tr align="left">
<th>facebook</th>
</tr>
<tr align="left">
<th>yahoo</th>
</tr>
<tr align="left">
<th>flipcart</th>
11
BCA-307(Web Designing lab) 1322310
</tr>
</body>
</html>
OUTPUT
12
BCA-307(Web Designing lab) 1322310
Practical 06
Aim: Create a webpage which displays your country, city and state link.
Procedure:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<p><h1>My address</h1></p>
<tr align="left">
<td>my country</td>
<th><a
href=https://www.google.com/search?q=india+on+map&rlz=1C1ONGR_enIN1049IN1049&oq=india
+on+map&gs_lcrp=EgZjaHJvbWUyBggAEEUYOdIBCDkyOTVqMGo3qAIAsAIA&sourceid=chrome&ie=U
TF-8#>click here</a></th>
</tr>
<tr align="left">
<td>my state</td>
<th><a
href="https://www.google.com/search?q=bihar+on+map+of+india&rlz=1C1ONGR_enIN1049IN1049
&oq=bihar+on+map+of+india&gs_lcrp=EgZjaHJvbWUyBggAEEUYOdIBCTExNzk5ajBqN6gCALACAA&s
ourceid=chrome&ie=UTF-8#">click here</a></th>
</tr>
<tr align="left">
<td>my village</td>
13
BCA-307(Web Designing lab) 1322310
</tr>
</table>
</body>
</html>
OUTPUT
14