Computer Project
Computer Project
- Shraddhashree Sahoo,
8D
1
Index
Page
Sl.No. Chapter Project
no.
Input
Design a website that 3~5
1. HTML provides tutorials in
Output
various subjects… 6
Input
Create a HTML code 7~8
2. HTML for a nested list as
Output
shown below… 8
2
Input
<html>
<head>
<title>Online Learning</title>
<style type="text/css">
body {background-color: mediumseagreen}
h1{border-style:solid;background-color:lightblue;text-align:center;font-family:calibri}
p{text-align:center;font-family:comic-sans;font-size:30}
ul{font-family:ariel;font-size:20}
h3{font-family:ariel;font-size:20}
table, th, td {border: 3px solid red; text-align:center}
</style>
</head>
<body>
<h1 style="color:red">Clear your Concepts <br> Online Learning Website</h1>
<p>This website is for students of classes V to VIII, Various topics from different subjects have been
explained in a simple and effective manner for easy understanding. Every topic has good illustratings and
diagrams to ensure clarity of concepts. Click on the links for more information about a topic</p>
3
<ul type="disc"><li>Social Science
<ol>
<li><a href="https://en.wikipedia.org/wiki/Earthquake">Earthquake</a></li>
<li><a href="https://en.wikipedia.org/wiki/Mughal_Empire">Mughal Empire</a></li>
</ol>
<br>
<li>Science
<ol>
<li><a href="https://en.wikipedia.org/wiki/Friction">Force and Friction</a></li>
<li><a href="https://en.wikipedia.org/wiki/Electric_current">Electric Current and Circuits</a></li>
</ol>
</ul>
<center><table style="width:50%">
<tr>
<th>S.No.</th>
<th>Course Name</th>
<th>Fee Charge</th>
</tr>
<tr>
4
<td>1</td>
<td>Mental Maths</td>
<td>5200/-</td>
</tr>
<tr>
<td>2</td>
<td>Basics of Robotics</td>
<td>2000/-</td>
</tr>
<tr>
<td>3</td>
<td>Fundamental of Electronics</td>
<td>7300/-</td>
</tr><center>
</body>
</html>
5
Output
6
Input
<html>
<head>
<title>Online Learning</title>
<style type="text/css">
body {background-color: Bisque}
</style>
</head>
<body>
<ol>
<li>Car
<li>Bike
<ul>
<li>Electric Bike
<li>Super Bike
<li>Bike
</ul>
<li>Plane
<ul>
<li>Fighter Plane
<li>Commercial Plane
<li>Private Plane
</ul>
<li>Helicopter
7
</ol>
</body>
</html>
Output
8
Input
9
Output
10