C10_Project-File

 

COMPUTER APPLICATIONS

SUBJECT CODE – 165

CLASS X

PRACTICAL / PROJECT FILE

SESSION 2026–27

Project Title:

MY SCHOOL WEBSITE

Submitted By:
Name: ______________________________
Class: X
Section: __________
Roll No.: __________

Submitted To:
Computer Teacher: ______________________________

School Name:



PAGE 1 – CERTIFICATE

CERTIFICATE

This is to certify that ____________________________, student of Class X, Session 2026–27, has successfully completed the Computer Applications (165) practical project entitled:

“MY SCHOOL WEBSITE”

The project has been completed under my guidance as part of the practical work for CBSE Class X Computer Applications.

Teacher's Signature: __________________

External Examiner: ___________________

Date: __________________

School Seal


PAGE 2 – ACKNOWLEDGEMENT

ACKNOWLEDGEMENT

I would like to express my sincere thanks to my Computer Applications teacher for guiding me throughout this project.

I am also thankful to my school, parents and friends for their support and encouragement.

This project helped me understand HTML, hyperlinks, forms, CSS and basic web-page design.

Name: __________________
Class: X
Roll No.: _______________


PAGE 3 – INDEX

S.No.TopicPage
1Certificate1
2Acknowledgement2
3Index3
4Introduction4
5Objectives5
6Problem Definition6
7Hardware & Software Requirements7
8Technologies Used8
9Website Structure9
10HTML Concepts Used10
11Home Page Code11
12About Page Code12
13Admission Form13
14CSS Code14
15Sample Output15
16Testing16
17Advantages17
18Limitations18
19Future Scope19
20Conclusion20
21Viva Questions21
22Bibliography22

PAGE 4 – INTRODUCTION

INTRODUCTION

A website is a collection of web pages available on the Internet.

This project is a simple School Website created using HTML and CSS.

The website provides information about:

  • School

  • Principal

  • Courses

  • Facilities

  • Contact details

  • Admission form

The project demonstrates basic concepts of web-page creation.


PAGE 5 – OBJECTIVES

OBJECTIVES

The main objectives of this project are:

  1. To understand HTML.

  2. To create web pages.

  3. To use headings and paragraphs.

  4. To insert images.

  5. To create hyperlinks.

  6. To create tables.

  7. To create forms.

  8. To use lists.

  9. To apply basic CSS styling.

  10. To understand website structure.


PAGE 6 – PROBLEM DEFINITION

PROBLEM DEFINITION

Schools need an easy way to provide basic information to students and parents.

A school website can provide information about:

  • School profile

  • Academic activities

  • Facilities

  • Admission

  • Contact information

Therefore, a simple school website has been developed using HTML and CSS.


PAGE 7 – HARDWARE AND SOFTWARE REQUIREMENTS

HARDWARE REQUIREMENTS

  • Computer/Laptop

  • Keyboard

  • Mouse

  • Monitor

  • Minimum 2 GB RAM

  • Storage space

SOFTWARE REQUIREMENTS

  • Windows/Linux

  • Notepad / Notepad++

  • Visual Studio Code

  • Google Chrome / Microsoft Edge / Firefox


PAGE 8 – TECHNOLOGIES USED

HTML

HTML stands for HyperText Markup Language.

It is used to create the structure of a web page.

CSS

CSS stands for Cascading Style Sheets.

It is used to improve the appearance and design of a web page.

WEB BROWSER

A web browser displays HTML documents as web pages.

Examples:

  • Google Chrome

  • Microsoft Edge

  • Mozilla Firefox


PAGE 9 – WEBSITE STRUCTURE

WEBSITE STRUCTURE

                 MY SCHOOL WEBSITE
                        |
        +---------------+---------------+
        |               |               |
      HOME            ABOUT          CONTACT
        |               |               |
        |               |          Admission Form
        |
     Facilities
        |
     Courses

FILE STRUCTURE

School Website
│
├── index.html
├── about.html
├── admission.html
├── style.css
└── images

PAGE 10 – HTML CONCEPTS USED

The following HTML elements are used:

HTML ElementPurpose
<html>Root element
<head>Contains page information
<title>Page title
<body>Main page content
<h1>Main heading
<p>Paragraph
<img>Image
<a>Hyperlink
<table>Table
<form>Form
<input>Input field
<ul>Unordered list
<ol>Ordered list
<br>Line break

PAGE 11 – HOME PAGE

index.html

<!DOCTYPE html>
<html>

<head>
    <title>My School Website</title>
    <link rel="stylesheet" href="style.css">
</head>

<body>

<h1>WELCOME TO MY SCHOOL</h1>

<p>
Welcome to our school website.
Our school provides quality education
and a positive learning environment.
</p>

<h2>Our Facilities</h2>

<ul>
    <li>Computer Laboratory</li>
    <li>Science Laboratory</li>
    <li>Library</li>
    <li>Smart Classes</li>
    <li>Playground</li>
</ul>

<h2>Important Links</h2>

<a href="about.html">About School</a>
<br>
<a href="admission.html">Admission Form</a>

</body>
</html>

PAGE 12 – ABOUT PAGE

about.html

<!DOCTYPE html>
<html>

<head>
    <title>About School</title>
    <link rel="stylesheet" href="style.css">
</head>

<body>

<h1>ABOUT OUR SCHOOL</h1>

<p>
Our school provides quality education
and encourages students to participate
in academic, cultural and sports activities.
</p>

<h2>Our Courses</h2>

<ol>
    <li>Science</li>
    <li>Mathematics</li>
    <li>Computer Applications</li>
    <li>Social Science</li>
    <li>Languages</li>
</ol>

<a href="index.html">Back to Home</a>

</body>
</html>

PAGE 13 – ADMISSION FORM

admission.html

<!DOCTYPE html>
<html>

<head>
    <title>Admission Form</title>
    <link rel="stylesheet" href="style.css">
</head>

<body>

<h1>ADMISSION FORM</h1>

<form>

<label>Student Name:</label>
<input type="text" name="name">
<br><br>

<label>Father's Name:</label>
<input type="text" name="father">
<br><br>

<label>Date of Birth:</label>
<input type="date" name="dob">
<br><br>

<label>Gender:</label>

<input type="radio" name="gender"> Male
<input type="radio" name="gender"> Female
<br><br>

<label>Class:</label>

<select>
    <option>IX</option>
    <option>X</option>
</select>

<br><br>

<label>Address:</label>
<br>

<textarea rows="4" cols="30"></textarea>

<br><br>

<input type="submit" value="Submit">
<input type="reset" value="Reset">

</form>

<br>

<a href="index.html">Back to Home</a>

</body>
</html>

PAGE 14 – CSS

style.css

body {
    font-family: Arial;
    margin: 40px;
    background-color: #f2f8ff;
}

h1 {
    text-align: center;
    color: darkblue;
}

h2 {
    color: green;
}

p {
    font-size: 18px;
    line-height: 1.5;
}

a {
    color: blue;
    text-decoration: none;
}

input, textarea, select {
    padding: 6px;
    margin: 4px;
}

PURPOSE OF CSS

CSS is used to:

  • Change text colour

  • Change background

  • Set font

  • Add spacing

  • Align headings

  • Improve page appearance


PAGE 15 – SAMPLE OUTPUT

HOME PAGE

Expected output:

             WELCOME TO MY SCHOOL

Welcome to our school website.
Our school provides quality education
and a positive learning environment.

Our Facilities

• Computer Laboratory
• Science Laboratory
• Library
• Smart Classes
• Playground

Important Links

About School
Admission Form

Paste screenshot of your Home Page here.


ABOUT PAGE

Paste screenshot of your About Page here.


ADMISSION PAGE

Paste screenshot of your Admission Form here.


PAGE 16 – TESTING

TEST CASES

TestActionExpected Result
1Open index.htmlHome page opens
2Click About SchoolAbout page opens
3Click Admission FormForm opens
4Enter student nameName is accepted
5Select genderOption selected
6Click SubmitForm submission initiated
7Click ResetForm fields cleared

PAGE 17 – ADVANTAGES

ADVANTAGES

  1. Simple and easy to use.

  2. Provides school information.

  3. Easy navigation using hyperlinks.

  4. Attractive web pages can be created.

  5. Admission information can be displayed.

  6. Website can be accessed using a browser.

  7. HTML is easy to learn.

  8. CSS improves website appearance.


PAGE 18 – LIMITATIONS

LIMITATIONS

  1. The website is static.

  2. The admission form does not store data in a database.

  3. No login system is provided.

  4. No online payment facility is available.

  5. Website requires further development for real-world use.


PAGE 19 – FUTURE SCOPE

FUTURE SCOPE

The website can be improved by adding:

  • Student login

  • Teacher login

  • Online admission

  • Online fee payment

  • School notices

  • Student results

  • Attendance information

  • Photo gallery

  • Online examination

  • Database connectivity

  • Responsive mobile design


PAGE 20 – CONCLUSION

CONCLUSION

The My School Website project demonstrates the basic principles of web development.

During this project, I learned how to:

  • Create HTML pages.

  • Use headings and paragraphs.

  • Create lists.

  • Insert hyperlinks.

  • Create forms.

  • Use tables.

  • Apply CSS.

  • Organise multiple web pages.

This project helped me understand the practical use of HTML and basic web technologies.


PAGE 21 – VIVA QUESTIONS AND ANSWERS

1. What is HTML?

HTML stands for HyperText Markup Language. It is used to create web pages.

2. What is CSS?

CSS stands for Cascading Style Sheets. It is used to style web pages.

3. What is a web browser?

A web browser is software used to access and display web pages.

4. Give two examples of browsers.

Google Chrome and Microsoft Edge.

5. What is a hyperlink?

A hyperlink is a clickable link that connects one web resource to another.

6. Which tag is used for a hyperlink?

<a> tag.

7. Which tag is used to insert an image?

<img> tag.

8. Which tag is used to create a paragraph?

<p> tag.

9. Which tag creates the largest heading?

<h1>.

10. What is a form?

A form is used to collect information from users.

11. Which tag creates a form?

<form>.

12. Which tag is used for text input?

<input>.

13. What is the purpose of <br>?

It inserts a line break.

14. What is the purpose of <title>?

It specifies the title of the web page.

15. What is the difference between HTML and CSS?

HTML creates the structure of a webpage, while CSS controls its appearance and styling.


PAGE 22 – BIBLIOGRAPHY

BIBLIOGRAPHY

  1. CBSE Computer Applications (165) Curriculum 2026–27.

  2. NCERT/CBSE Computer Applications study material.

  3. HTML reference material.

  4. CSS reference material.

  5. Computer Applications class notes.

  6. Teacher's guidance.


FINAL CHECKLIST

Before submitting the practical file:

☐ Cover Page completed
☐ Certificate signed
☐ Acknowledgement completed
☐ Index completed
☐ Project introduction written
☐ Objectives written
☐ Requirements written
☐ Flowchart drawn
☐ HTML programs written
☐ CSS program written
☐ Output screenshots pasted
☐ Test cases completed
☐ Conclusion written
☐ Viva prepared
☐ Bibliography completed
☐ Teacher's signature obtained

PROJECT TITLE

MY SCHOOL WEBSITE

CBSE CLASS X – COMPUTER APPLICATIONS (165)

SESSION 2026–27

एक टिप्पणी भेजें

0 टिप्पणियाँ
* Please Don't Spam Here. All the Comments are Reviewed by Admin.