0% found this document useful (0 votes)
35 views5 pages

HTML Project Work Overview for XI Class

The document is an HTML project work completed by student N. Sanjay from Class XI, focusing on the fundamentals of HTML as part of the Computer Applications syllabus. It includes sections on HTML structure, tags, lists, tables, forms, and CSS, along with a simple website project. The project concludes with a reflection on the learning experience gained through the work.

Uploaded by

nsridevidevi9
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)
35 views5 pages

HTML Project Work Overview for XI Class

The document is an HTML project work completed by student N. Sanjay from Class XI, focusing on the fundamentals of HTML as part of the Computer Applications syllabus. It includes sections on HTML structure, tags, lists, tables, forms, and CSS, along with a simple website project. The project concludes with a reflection on the learning experience gained through the work.

Uploaded by

nsridevidevi9
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

<div style="background: linear-gradient(135deg, #4facfe, #00f2fe); color: white; padding: 60px; text-

align: center; border-radius: 12px;">

<h1 style="font-size: 42px;">PROJECT WORK ON HTML</h1> <h2 style="font-size: 26px;">Computer


Applications</h2>

<br>

<p style="font-size: 20px;"><b style="color:#ffeb3b;">Student Name:</b> <span style="color:#ffffff;">N.


Sanjay</span></p> <p style="font-size: 20px;"><b style="color:#ffccbc;">Class:</b> <span
style="color:#ffffff;">XI</span></p> <p style="font-size: 20px;"><b style="color:#c8e6c9;">Subject:</b>
<span style="color:#ffffff;">Computer Applications</span></p> <p style="font-size: 20px;"><b
style="color:#e1bee7;">Topic:</b> <span style="color:#ffffff;">HTML Project Work</span></p>

</div>

Student Name: N. Sanjay

Class: XI

Subject: Computer Applications

Topic: HTML Project Work

CERTIFICATE
This is to certify that N. Sanjay, student of Class XI, has successfully completed the HTML Project Work
as prescribed in the Computer Applications syllabus. This project is an original work carried out under
academic guidance.

ACKNOWLEDGEMENT
I would like to express my sincere thanks to my Computer Applications teacher for their guidance and
support in completing this project. I also thank my parents and friends for their encouragement.

INDEX
1. Introduction to HTML
2. Basic HTML Structure
3. Heading Tags
4. Text Formatting Tags
5. Paragraph and Preformatted Text
6. Address and Horizontal Rule
7. Blockquote and Font Tags

1
8. Lists in HTML
9. Tables in HTML
10. Calendar using Table
11. HTML Forms
12. Frames and Frameset
13. Simple Website (5 Pages)
14. Use of CSS
15. Conclusion

1. INTRODUCTION TO HTML
HTML stands for HyperText Markup Language. It is used to create web pages and websites. HTML
uses tags to structure content on the web.

2. BASIC HTML STRUCTURE

<html>
<head>
<title>My First Web Page</title>
</head>
<body bgcolor="lightblue">
Welcome to HTML
</body>
</html>

3. HEADING TAGS

<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>

4. TEXT FORMATTING TAGS

<b>Bold Text</b><br>
<strong>Strong Text</strong><br>
<i>Italic Text</i><br>

2
<em>Emphasized Text</em><br>
<u>Underlined Text</u>

5. PARAGRAPH AND PREFORMATTED TEXT

<p>This is a paragraph.</p>
<pre>
This is preformatted text.
Spacing is preserved.
</pre>

6. ADDRESS AND HORIZONTAL RULE

<address>
Written by N. Sanjay<br>
India
</address>
<hr width="50%">
<hr color="red">

7. BLOCKQUOTE AND FONT TAG

<blockquote>
Education is the most powerful weapon.
</blockquote>
<font color="blue" size="4">HTML Project</font>

8. LISTS IN HTML

<ol>
<li>Fruits
<ul>
<li>Apple</li>
<li>Banana</li>
</ul>
</li>
<li>Vegetables</li>
</ol>

3
9. TABLES IN HTML (TRAIN SCHEDULE)

<table border="1">
<tr>
<th>Train No</th>
<th>Name</th>
<th>Time</th>
</tr>
<tr>
<td>12345</td>
<td>Express</td>
<td>10:00 AM</td>
</tr>
</table>

10. CALENDAR USING TABLE

<table border="1">
<tr>
<th>Sun</th><th>Mon</th><th>Tue</th><th>Wed</th><th>Thu</th><th>Fri</
th><th>Sat</th>
</tr>
<tr>
<td>1</td><td>2</td><td>3</td><td>4</td><td>5</td><td>6</td><td>7</td>
</tr>
</table>

11. HTML FORM (SIGN UP FORM)

<form>
Name: <input type="text"><br>
Password: <input type="password"><br>
<input type="submit" value="Sign Up">
</form>

12. FRAMES AND FRAMESET

<frameset cols="30%,70%">
<frame src="[Link]">

4
<frame src="[Link]">
</frameset>

13. SIMPLE WEBSITE (5 PAGES)


Pages included: - Home - About Us - Services - Gallery - Contact Us

Each page is linked using <a href> tag.

14. USE OF CSS

<style>
body { background-color: lightyellow; }
h1 { color: blue; }
</style>

15. CONCLUSION
This project helped me understand the basics of HTML and how web pages are created. It improved my
practical knowledge of web designing.

END OF PROJECT

Common questions

Powered by AI

A developer might choose to use inline CSS for quick, targeted styling in an HTML document where speed and simplicity are priorities. However, its limitations include reduced maintainability for larger sites, difficulty in applying uniform styling across multiple pages, and a higher propensity for code bloat, as the same styling must be repeatedly specified .

The <address> tag is used to provide contact information for the author or owner of a document or article, often found at the bottom of a page, which supports authorship and legal purposes. In contrast, the <hr> tag is a thematic break designed to separate content within a webpage, acting as a visual divider that enhances readability. Together, they serve distinct roles in the structural and semantic organization of web content .

The <frameset> tag in HTML replaces the <body> tag when dividing a browser window into multiple sections, each capable of displaying a separate document. Within a <frameset>, <frame> tags are used to specify the source URL for each section, allowing for a single webpage to present various web pages simultaneously. This layout strategy enhances navigation but is now considered obsolete in favor of modern methods like CSS Flexbox and Grid .

The provided HTML example creates a simple calendar layout using a table with defined borders and day labels as headers using <th>. Each day of the calendar is represented by table cells (<td>). The advantages of this method include easy formatting control, straightforward alignment of calendar data, and visual clarity, making it a simple but effective approach for static calendar displays .

Creating a simple 5-page website offers significant educational value by integrating multiple HTML concepts such as linking pages with <a> tags, structuring content with proper HTML elements, and potentially incorporating CSS for styling. This hands-on experience consolidates theoretical knowledge, reinforces problem-solving skills, and provides a concrete project that demonstrates proficiency in web development fundamentals .

The basic HTML structure facilitates webpage creation by providing a framework consisting of <html> as the root element, <head> for metadata such as title, and <body> for the visible content. This separation helps in managing different aspects of a webpage efficiently, like presentation, layout, and metadata .

HTML lists provide a structured way to present grouped information, improving readability and organization. The difference between <ol> (ordered list) and <ul> (unordered list) is significant; <ol> generates a numbered list to show sequence or priority, while <ul> creates a bulleted list suitable for items without intrinsic order .

The main purpose of the HTML <form> element demonstrated in the project is to collect user input. The example form in the project includes fields for a user's name and password, and a 'Sign Up' button, suggesting its use in a registration process .

The use of heading tags in HTML enhances the structure and readability of a web page by providing a hierarchy of content, which allows users and search engines to understand the organization and significance of different sections. They range from <h1> for the main title to <h6> for less important headings, making it easier to navigate the document visually and semantically .

Completing an HTML project contributes to practical knowledge of web design by providing hands-on experience with creating elements like forms, tables, and multi-page sites, as well as using CSS for styling. It allows students to apply theoretical concepts, face and solve real-world problems, and build a foundation for further learning in web technologies, fostering an understanding of how websites function and are visually represented .

You might also like