WD Prakhyat 2

You might also like

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

WEB DEVELOPMENT WORKSHEET

NAME : PRAKHYAT PANDIT


UID : 20 BCS 5544

GROUP/SECTION : ITB-19

AIM : Create an ordered list which should display the grocery


items to be purchased by a household. Include the miscellaneous
items also in the least priority list using unordered list.CSS list-
style-type property should also be included.
CODE :
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body style="color: blanchedalmond; background-color: grey;">
<div class="head" style="text-align: center; color: burlywood; text-
decoration: burlywood dotted underline; font-size: 60px; font-family:
'Times New Roman', Times, serif;">LISTS</div><hr>
<div class="head1" style="font-size: 40px; font-family: Arial, Helvetica,
sans-serif; text-decoration: cornsilk wavy underline; color: cornsilk;"
>Most Prefered Grocery Item</div>
<ol style="font-size: 20px;">
<li>Potato</li>
<li>Tomato</li>
<li>Onion</li>
<li>Garlic</li>
<li>Capsicum</li>
</ol>
<hr>
<div class="head1" style="font-size: 40px; font-family: Arial, Helvetica,
sans-serif; text-decoration: cornsilk wavy underline; color:
cornsilk;">Least Priority List</div>
<ul style="font-size: 20px;">
<li>Raddish</li>
<li>Spinach</li>
</ul>
</body>
</html>

OUTPUT :
AIM: Design a timetable and display it in tabular format.

CODE :
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<H1><u>Time Table</u></H1>
<table rules=cols border="2" style="font-size: 30px; text-align: center;">
<tr>
<th>&nbsp;&nbsp;<u>Monday</u>&nbsp;&nbsp;<hr></th>
<th>&nbsp;&nbsp;<u>Tuesday</u>&nbsp;&nbsp;<hr></th>
<th>&nbsp;&nbsp;<u>Wednesday</u>&nbsp;&nbsp;<hr></th>
<th>&nbsp;&nbsp;<u>Thursday</u>&nbsp;&nbsp;<hr></th>
<th>&nbsp;&nbsp;<u>Friday</u>&nbsp;&nbsp;<hr></th>
</tr>
<tr>
<th>&nbsp;Physics&nbsp;<hr></th>
<th>&nbsp;Chemistry&nbsp;<hr></th>
<th>&nbsp;Maths&nbsp;<hr></th>
<th>&nbsp;English&nbsp;<hr></th>
<th>&nbsp;Hindi&nbsp;<hr></th>
</tr>
<tr>
<th>&nbsp;Computer&nbsp;<hr></th>
<th>&nbsp;Physics&nbsp;<hr></th>
<th>&nbsp;English&nbsp;<hr></th>
<th>&nbsp;Maths&nbsp;<hr></th>
<th>&nbsp;Chemistry&nbsp;<hr></th>
</tr>
<tr>
<th>&nbsp;Hindi&nbsp;<hr></th>
<th>&nbsp;English&nbsp;<hr></th>
<th>&nbsp;Computers&nbsp;<hr></th>
<th>&nbsp;Maths&nbsp;<hr></th>
<th>&nbsp;Chemistry&nbsp;<hr></th>
</tr>
<tr>
<th>&nbsp;Physics&nbsp;<hr></th>
<th>&nbsp;Chemistry&nbsp;<hr></th>
<th>&nbsp;English&nbsp;<hr></th>
<th>&nbsp;Computers&nbsp;<hr></th>
<th>&nbsp;Hindi&nbsp;<hr></th>
</tr>
<tr>
<th>&nbsp;Maths&nbsp;<hr></th>
<th>&nbsp;Computers&nbsp;<hr></th>
<th>&nbsp;Hindi&nbsp;<hr></th>
<th>&nbsp;Physics&nbsp;<hr></th>
<th>&nbsp;Chemistry&nbsp;<hr></th>
</tr>
<tr>
<th>&nbsp;Chemistry&nbsp;<hr></th>
<th>&nbsp;Physics&nbsp;<hr></th>
<th>&nbsp;Maths&nbsp;<hr></th>
<th>&nbsp;English&nbsp;<hr></th>
<th>&nbsp;Computers&nbsp;<hr></th>
</tr>
<tr>
<th>&nbsp;Physics&nbsp;<hr></th>
<th>&nbsp;Maths&nbsp;<hr></th>
<th>&nbsp;English&nbsp;<hr></th>
<th>&nbsp;Chemistry&nbsp;<hr></th>
<th>&nbsp;Hindi&nbsp;<hr></th>
</tr>
<tr>
<th>&nbsp;Hindi&nbsp;<hr></th>
<th>&nbsp;Chemistrys&nbsp;<hr></th>
<th>&nbsp;Computers&nbsp;<hr></th>
<th>&nbsp;Maths&nbsp;<hr></th>
<th>&nbsp;Hindi&nbsp;<hr></th>
</tr>
</table>

</body>
</html>
OUTPUT :
AIM : Create a webpage to display chemical formula of water. Also
include the mathematical formula of (x+y)^2=x^2+y^2+2xy.Also
include your favorite quote in this page which should be displayed in
the red color and its should have font-size 20px and font family as
Times New Roman.

CODE :
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .for_all{
            text-align: center;
            font-size: 40px;
            font-family: 'Times New Roman', Times, serif;

        }
    </style>
</head>
<body style="background-color: rgb(20, 20, 20);">
    <div class="for_all" style="color: aliceblue; background-color: rgb(39, 39, 238);">
        Formula of Water is <br>H<sub>2</sub>O
    </div>
    <hr style="border: 3px dashed rgb(137, 28, 238);">
    <div class="for_all" style="color: brown; background-color: burlywood;">
        An important mathematical Equation <br> (x + y)<sup>2</sup> = x<sup>2</sup> 
+ y<sup>2</sup> + 2xy
    </div>
    <hr style="border: 3px dashed rgb(137, 28, 238);">
    <div class="for_all" style="color: rgb(207, 27, 27); background-color: rgb(31, 197, 73);
">
        "Live a life you will Remember"

    </div>
</body>
</html>
OUTPUT :
AIM : Create a page with the help of HTML Colors and HTML
CSS which will help you in displaying different paragraphs with
different background colors and different fonts. take help of
Styling using Class and Id feature.

CODE :
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
<style>
.for_all{
text-align: center;
font-size: 40px;
font-family: 'Times New Roman', Times, serif;

}
</style>
</head>
<body style="background-color: rgb(20, 20, 20);">
<div class="for_all" style="color: aliceblue; background-color: rgb(39, 39, 238); font-
size: 30px;">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Fugiat, molestiae!</p>
</div>
<hr style="border: 3px dashed rgb(137, 28, 238);">
<div class="for_all" style="color: brown; background-color: burlywood; font-size:
50px;">
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Sit delectus vitae quas
minus. Corrupti ad voluptatibus necessitatibus incidunt cupiditate, alias odio assumenda
expedita aliquam.</p>
</div>
<hr style="border: 3px dashed rgb(137, 28, 238);">
<div class="for_all" style="color: rgb(207, 27, 27); background-color: rgb(31, 197, 73);
font-size: 40px;">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Velit odio id quas
omnis vel ipsam ea dolorum blanditiis sequi soluta autem mollitia cupiditate quibusdam
ratione iusto debitis laboriosam dolor, facilis, reiciendis, vitae animi. Optio!</p>

</div>
</body>
</html>
OUTPUT :
AIM : Design a computer science department web page for
department which includes all the features/options like activities
held in department, syllabus for all semesters, results etc.
CODE :
<!DOCTYPE html>
<html lang="en">
<head>

<title>Document</title>

</head>
<body >
<h2 style="color: rgb(231, 144, 14); font-size: 30px; text-decoration:
blanchedalmond underline;">Academics</h2>
<p>Chandigarh University [CU] imparts quality education at an affordable and
competitive fee structure offering Best ROI (Return on Investment) to the
students. CU offers industry-oriented professional programs in Engineering,
MBA, MCA, Journalism, Hotel Management, Bio-Technology, Pharmacy,
Architecture, and many more with the lowest course fee as compared to other
universities in the region.</p>
<hr>
<h2 style="color: blue; font-size: 30px; text-decoration: blue
underline;">Sylabbus</h2>
<div>
</div>
<div class="accordion_panel" style="max-height: 0px;">
<div class="dropdown_item">
<div class="tab_course_title">1<sup>st</sup> Semester</div><br>
<table id="customers" class="table-responsive">
<tbody>
<tr>
<th width="132">
<p><strong>Code</strong></p>
</th>
<th width="157">
<p><strong>Course Name</strong></p>
</th>
<th width="85">
<p><strong>Course Type</strong></p>
</th>
<th width="50">
<p><strong>L</strong></p>
</th>
<th width="50">
<p><strong>T</strong></p>
</th>
<th width="50">
<p><strong>P</strong></p>
</th>
<th width="50">
<p><strong>S</strong></p>
</th>
<th width="50">
<p><strong>C</strong></p>
</th>
<th width="51">
<p><strong>CH</strong></p>
</th>
</tr>
<tr>
<td width="132">
<p>21SMT122</p>
</td>
<td width="157">
<p>Calculus and Vector Spaces</p>
</td>
<td width="85">
<p>&nbsp;BS</p>
</td>
<td width="50">
<p>3</p>
</td>
<td width="50">
<p>2</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>&nbsp;</p>
</td>
<td width="50">
<p>5</p>
</td>
<td width="51">
<p>5</p>
</td>

</tr>
<tr>
<td width="132">
<p>21ECT112</p>
</td>
<td width="157">
<p>Electrical &amp; Electronics Engineering</p>
</td>
<td width="85">
<p>&nbsp;ES</p>
</td>
<td width="50">
<p>3</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>&nbsp;</p>
</td>
<td width="50">
<p>3</p>
</td>
<td width="51">
<p>3</p>
</td>

</tr>
<tr>
<td width="132">
<p>21CST 114</p>
</td>
<td width="157">
<p>Problem Solving with Programming</p>
</td>
<td width="85">
<p>&nbsp;ES</p>
</td>
<td width="50">
<p>2</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>&nbsp;</p>
</td>
<td width="50">
<p>2</p>
</td>
<td width="51">
<p>2</p>
</td>

</tr>
<tr>
<td width="132">
<p>21UCT141</p>
</td>
<td width="157">
<p>Communication Skills</p>
</td>
<td width="85">
<p>&nbsp;UC</p>
</td>
<td width="50">
<p>2</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>&nbsp;</p>
</td>
<td width="50">
<p>2</p>
</td>
<td width="51">
<p>2</p>
</td>

</tr>
<tr>
<td width="132">
<p>21ECT111</p>
</td>
<td width="157">
<p>Physics for Electronics</p>
</td>
<td width="85">
<p>&nbsp;BS</p>
</td>
<td width="50">
<p>3</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>&nbsp;</p>
</td>
<td width="50">
<p>3</p>
</td>
<td width="51">
<p>3</p>
</td>

</tr>
<tr>
<td width="132">
<p>21ECP113</p>
</td>
<td width="157">
<p>Electrical &amp; Electronics Engineering Lab</p>
</td>
<td width="85">
<p>&nbsp;ES</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>2</p>
</td>
<td width="50">
<p>&nbsp;</p>
</td>
<td width="50">
<p>1</p>
</td>
<td width="51">
<p>2</p>
</td>

</tr>
<tr>
<td width="132">
<p>21CSP 115</p>
</td>
<td width="157">
<p>Problem Solving with Programming Lab</p>
</td>
<td width="85">
<p>&nbsp;ES</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>4</p>
</td>
<td width="50">
<p>&nbsp;</p>
</td>
<td width="50">
<p>2</p>
</td>
<td width="51">
<p>4</p>
</td>

</tr>
<tr>
<td width="132">
<p>21MEP113</p>
</td>
<td width="157">
<p>Computer Graphics using CAD Lab</p>
</td>
<td width="85">
<p>&nbsp;ES</p>
</td>
<td width="50">
<p>1</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>4</p>
</td>
<td width="50">
<p>&nbsp;</p>
</td>
<td width="50">
<p>3</p>
</td>
<td width="51">
<p>5</p>
</td>

</tr>
<tr>
<td width="132">
<p>21UCP142</p>
</td>
<td width="157">
<p>Communication Skills Lab</p>
</td>
<td width="85">
<p>&nbsp;UC</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>2</p>
</td>
<td width="50">
<p>&nbsp;</p>
</td>
<td width="50">
<p>1</p>
</td>
<td width="51">
<p>2</p>
</td>

</tr>
<tr>
<td width="132">
<p>21ECP114</p>
</td>
<td width="157">
<p>Foundation of IOT Lab</p>
</td>
<td width="85">
<p>ES</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>2</p>
</td>
<td width="50">
<p>&nbsp;</p>
</td>
<td width="50">
<p>1</p>
</td>
<td width="51">
<p>2</p>
</td>

</tr>
<tr>
<td width="132">
<p>21UCTXXX</p>
</td>
<td width="157">
<p>Design Thinking and creativity for Innovation</p>
</td>
<td width="85">
<p>&nbsp;UC</p>
</td>
<td width="50">
<p>1</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>0</p>
</td>
<td width="50">
<p>&nbsp;</p>
</td>
<td width="50">
<p>1</p>
</td>
<td width="51">
<p>1</p>
</td>

</tr>
<tr>
<td colspan="3" width="375">
<p><strong>TOTAL</strong></p>
</td>
<td width="50">
<p>15</p>
</td>
<td width="50">
<p>2</p>
</td>
<td width="50">
<p>14</p>
</td>
<td width="50">
<p>&nbsp;</p>
</td>
<td width="50">
<p>24</p>
</td>
<td width="51">
<p>32</p>
</td>

</tr>
</tbody>
</table>
<br>
</div>
</body>
</html>

OUTPUT :

You might also like