0% found this document useful (0 votes)
3 views10 pages

Computer Project

The document outlines a computer project by Shraddhashree Sahoo that involves designing a website for online learning, including tutorials for various subjects aimed at students in classes V to VIII. It provides HTML code examples for creating a nested list and adding variables using Python. The website features links to educational topics and offers special courses with associated fees.
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)
3 views10 pages

Computer Project

The document outlines a computer project by Shraddhashree Sahoo that involves designing a website for online learning, including tutorials for various subjects aimed at students in classes V to VIII. It provides HTML code examples for creating a nested list and adding variables using Python. The website features links to educational topics and offers special courses with associated fees.
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/ 10

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

Write a code for Input


9
adding three different
3. Python
variables of fruits Output
using Python… 10

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>

<center><img src="icon.png" style= "width:100;height:100;border:solid red;border-radius:40%></center>

<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>

<hr style= "border-top: 10px solid red">

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>

<h3>We also conduct the following special courses</h3>

<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

You might also like