0% found this document useful (0 votes)
1 views

HTML Report .

.......
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1 views

HTML Report .

.......
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 18

RAOSAHEB WANGDE MASTER CHARITABLE TRUST’S

DNYANSHREE INSTITUTE OF ENGINEERING AND TECHNOLOGY


A/P: SONVADI-GAJAWADI, SAJJANGAD ROAD, TAL. & DIST.SATARA,
MAHARASHTRA STATE, 415 013

A
SEMINAR REPORT
ON

“ HTML MULTIMEDIA ”

SUBMITTED TO

Dr. BABASAHEB AMBEDKAR TECHNOLOGICAL UNIVERSITY,


LONERE
BY
MS.VAISHNAVI NIVAS MOHITE PRN:23067971242053

SECOND
YEAR OF
BACHELOR OF TECHNOLOGY
UNDER THE GUIDANCE OF

PROF.RAJMANE P.P.
Department of Computer
Science And Engineering
A.Y. 2024-25

1
RAOSAHEB WANGDE MASTER CHARITABLE TRUST‘S
DNYANSHREE INSTITUTE OF ENGINEERING AND TECHNOLOGY
A/P: SONVADI-GAJAWADI, SAJJANGAD ROAD, TAL. & DIST.SATARA,
MAHARASHTRA STATE, 415 013

CERTIFICATE

This is to certify that the seminar report on “HTML MULTIMEDIA ” has been
successfully completed by MS.VAISHNAVI NIVAS MOHITE . PRN:23067971242053 of S. Y. B-
Tech. Sem-III for the partial fulfillment of the requirement of Dr. Babasaheb Ambedkar Technological
University, Lonere during academic year 2024-2025.

Prof .RAJMANE P.P. Dr. PONDKULE P.M. Dr. JADHAV A.D.


[GUIDE] [HEAD OF DEPARTMENT] [PRINCIPAL]

2
ACKNOWLEDGEMENT

The satisfaction that accompanies the successful completion of any task would be incomplete
without the mention of people whose ceaseless co-operation made it possible, whose constant
guidance and encouragement crown all efforts with success.

I sincerely express my deep sense of gratitude towards my respected guide Prof.


RAJMANE P.P. and my H.O.D. MS. PONDKULE P.M. for their expert and
valuable guidance and continuous help during completion of this work successfully.

I am also grateful to our college Principal Dr. A. D. JADHAV whose valuable guidance has
always inspired me to work. I thank all the members of our Computer Science And
Engineering Department for their assistance in the completion of this work.

Date:
Place: Satara

Signature
MS.VAISHNAVI NIVAS MOHITE

3
ABSTRACT

HTML, or Hypertext Markup Language, is the foundational markup language used


for creating and structuring content on the World Wide Web. Initially developed by Tim Berners-
Lee in 1991, HTML allows developers to format text, embed images, create links, and
incorporate multimedia elements within web pages. Over the years, HTML has evolved through
various versions, with HTML5 being the latest iteration, introducing new semantic elements,
multimedia support, and APIs that enhance web functionality and user experience.
HTML serves as the backbone of web development, working in conjunction with
CSS (Cascading Style Sheets) and JavaScript to create interactive and visually appealing
websites. Despite its limitations, such as static content and browser compatibility issues, HTML
remains an essential skill for web developers and a critical component in the ongoing evolution
of web technologies.

4
INDEX

Chapter Title Page


No. No.
1 CERTIFICATE 2

2 ACKNOWLEDGEMENT 3

3 ABSTRACT 4

4 INDEX 5

5 LITERATURE REVIEW 6

6 INTRODUCTION 8

7 BLOCK DIAGRAM 9

8 WORKING PRINCIPLE 10

9 TAGS OF HTML 11

10 EXAMPLE ON HTML 12

11 ADVANTAGES 13

12 DISADVANTAGES 14

13 APPLICATIONS 15

14 BENEFITS 16

15 CONCLUSION 17

16 REFERENCE 18

5
LITERATURE REVIEW

Author: Tim Berners Lee


Published on : 1993

 Introduction to HTML:

HTML is the standard markup


language used to create web
pages. It was first developed
by Tim Berners-Lee in 1991 as
a means to structure
documents on the World Wide
Web. HTML provides the
basic structure for web
content, allowing text, images,
links, and other multimedia
elements to be organized and
displayed in a browser.

 Evolution of HTML:

• HTML 1.0: Released in


1993, this version laid the
foundation for web
documents. It included
basic tags for text
formatting, links, and
images.
• HTML 2.0: Introduced in
1995, it standardized the
features of HTML and
included forms, tables,
and more complex
elements.
• HTML 3.2: Released in
1997, this version added
support for applets,
scripts, and improved 6
table support.
• HTML 4.01: Released in
 Applications of HTML:
HTML is used in various applications, including:-
• Web Development: The backbone of all websites, used in conjunction with CSS and
JavaScript.
• Email Templates: Many email marketing campaigns use HTML to format messages.
• Mobile Applications: HTML5 is often used in hybrid mobile apps, allowing developers to
create cross-platform applications.
 Challenges and Limitations Despite its advantages, HTML has certain limitations:
• Static Nature: HTML is not sufficient for creating dynamic applications without the help of
other languages.
• Browser Compatibility: Variations in how browsers interpret HTML can lead to inconsistent
rendering.
• Security Concerns: Poorly structured HTML can lead to vulnerabilities, especially when
combined with JavaScript.

7
INTRODUCTION

● Introduction HTML is the Hyper Text Markup Language. The following is a list of some
of the most commonly used HTML tags:-
1) <! DOCTYPE HTML>:- It is used to describe the version of html.
2) <HTML>:- It is the root element in an Html Web page.
3) <HEAD>:- It is having information about the document.
4) <TITLE>:- It is used to provide title for the Web Document.
5) <BODY>:- It contains all the information in the document
6) <H1>:- It defines heading of large size.
7) <P>:- It defines the paragraph.
● A) Basic HTML Documents
1) To start any HTML document , it must be started with a document Type Declaration
(DTD) i.e <!DOCTYPE HTML>.
2) HTML document starts with the start tag i.e <HTML> and ends with the end tag i.e
</HTML>
3) Content of document is between the <BODY> and </BODY>.
• B) Basic HTML Headings
1) HTML Headings are of 6 types and defined with <h1> to <h6> tags.
2) Heading <H1> defines the heading that is most important and of largest size.
3) Heading <H6> defines the heading that is least important and of smallest size.
4) Heading <H2>,<H3>,<H4>,<H5> are of size in between <H1> and <H6> i.e. (Size of
H6<H5<H4<H3<H2<H1).
● C) Basic HTML Paragraphs, Links and Images
1) HTML Paragraphs are defined with the <p> and </p>.
2) Anchor tag <a> is used to define HTML Links.
3) Href Attribute is used to define the link’s destination.
4) Additional properties can be assigned with the use of different Attributes.
5) HTML Images are defined with the <img> tag.
6) Different attributes can be provided with image tag like the source file (src), alternative text
(alt), width
8
BLOCK DIAGRAM

9
WORKING PRINCIPLE

 Markup Language :
HTML is a markup language, which means it uses tags to define elements
within a document. These tags tell the web browser how to display the content.

 Document Structure:
An HTML document is structured in a hierarchical format. The basic
components include:
• Doctype Declaration: At the very top, the document starts with a declaration
(<!DOCTYPE html>) that informs the browser about the version of HTML
being used.
• HTML Element: The entire content of the HTML document is enclosed
within <html> and </html> tags.
• Head Section: The <head> section contains meta-information about the
document, such as its title (<title>), links to stylesheets, and scripts.
• Body Section: The <body> section contains the actual content that users see,
including text, images, links, and other media.

 Tags and Attributes:


HTML uses various tags to create elements. Each tag can also have attributes
that provide additional information about that element. For example, the <img>
tag can have a src attribute to specify the image source.

 Rendering by Browsers:
When a web browser loads an HTML document, it reads the markup and
renders the content accordingly. The browser interprets the tags and displays the
elements visually on the screen. It also applies styles (from CSS) and executes
scripts (from JavaScript) as specified in the HTML

 Hyperlinks:
One of the key features of HTML is its ability to create hyperlinks using the
<a> tag. This allows users to navigate between different web pages and resources
seamlessly.

10
TAGS OF HTML

11
EXAMPLE ON HTML

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
Try it Yourself

OUTPUT:

This is a Heading

This is a paragraph.

12
ADVANTAGES

❖ Data Simplicity:

HTML is easy to learn and use, making it accessible for beginners who want to start creating web
pages.

 Structure:

It provides a clear structure for web content, helping to organize elements like headings,
paragraphs, images, and links in a logical manner.

 Browser Compatibility:

HTML is supported by all web browsers, ensuring that web pages can be viewed consistently
across different platforms and devices

 SEO Benefits:

Proper use of HTML elements, such as headings and meta tags, can improve search engine
optimization, making it easier for search engines to index and rank web pages.

 Accessibility:

HTML allows for the creation of accessible web content that can be navigated by users with
disabilities, especially when using semantic tags.

 Integration with Other Technologies:

HTML works well with CSS for styling and JavaScript for adding interactivity, allowing for the
development of dynamic and visually appealing websites.

 Rich Media Support:

It supports embedding images, videos, and audio, enhancing the overall user experience.

13
DISADVANTAGES

❖ Limited Functionality:

HTML alone is not a programming language; it can't perform complex calculations or logic.
For dynamic content and interactivity, HTML must be combined with languages like
JavaScript.

 Static Content:

HTML is primarily used for static content. While you can create interactive elements with
JavaScript, the HTML itself does not support dynamic content without additional scripting

 Styling Limitations:

HTML provides basic formatting options, but for advanced styling and layout, CSS is
necessary. Without CSS, web pages can look plain and unappealing.

 Lack of Advanced Features:

HTML does not support features like database connectivity, user authentication, or server-
side processing, which are often needed for complex applications. These require additional
technologies like PHP, Python, or frameworks.

 SEO Challenges:

If not structured correctly, HTML can lead to poor search engine optimization (SEO). For
example, improper use of headings and meta tags can affect how search engines index the
content.

14
APPLICATIONS

❖ Web Page Creation:

HTML is the foundation for creating all types of web pages, from simple personal blogs
to complex corporate websites.

 Web Applications:

Many web applications use HTML in combination with other technologies (like CSS and
JavaScript) to create interactive user interfaces.

 Email Templates:

HTML is often used to design email templates for newsletters and marketing campaigns,
allowing for visually appealing and structured content.

 Mobile Applications:

HTML can be used in mobile app development, particularly with frameworks like
Apache Cordova or PhoneGap, which allow developers to create mobile apps using web
technologies.

 Content Management Systems (CMS):

Many CMS platforms (like WordPress) use HTML to create and manage website
content, allowing users to easily publish and edit content without needing to know the
underlying code.

 E-commerce Websites:

HTML is essential for building online stores, providing the structure for product listings,
shopping carts, and checkout processes.

 Documentation and Tutorials:


HTML is often used to create online documentation, tutorials, and help guides, providing
structured information in a user-friendly format.

15
BENEFITS

❖ Structure and Organization:

HTML provides a clear structure for web content. It allows developers to organize
text, images, and other elements in a way that is easily readable by both browsers
and users.

 Accessibility:

HTML is designed to be accessible. By using semantic HTML elements (like


headings, paragraphs, lists, etc.), developers can create web pages that are more
accessible to people with disabilities who use screen readers.

 Cross-Platform Compatibility:

HTML is supported by all web browsers, making it a universal language for web
development. This means that a web page written in HTML can be viewed on any
device, whether it's a desktop, tablet, or smartphone.

 SEO Friendly:
HTML allows for the use of specific tags that help search engines understand the
content of a webpage. Proper use of headings, meta tags, and alt attributes can
improve a site's search engine optimization (SEO).

 Integration with Other Technologies:

HTML can easily integrate with other web technologies like CSS (Cascading Style
Sheets) for styling and JavaScript for interactivity. This combination allows
developers to create dynamic and visually appealing websites.

 Easy to Learn:

HTML is relatively straightforward and easy to learn, making it accessible for


beginners who want to start building websites.

 Content Management:

HTML makes it easy to manage and update content on a website. Changes can be
made quickly by editing the HTML code.

16
CONCLUSION

HTML is the ideal option for websites which require brisk development of
functionalities . It is a vey easy to understand and basic for developing a web site. It
qualified HTML as the standard for marking up web pages. HTML is very important for
making webpage. With the help of HTML we can easily create page of our desires.
Simply by using the tags we can easy adjust everything in stylish way.

17
REFERENCES

❖ Research papers:

1 . International Journal of Science and Research (IJSR)


ISSN (Online): 2319-7064

2 . International Journal of Research in Engineering, Science and Management


Volume-2, Issue-3, March-2019

❖ Websites:

https://www.w3schools.com/html/
https://www.geeksforgeeks.org/html-tutorial/
https://en.wikipedia.org/wiki/HTML
https://www.researchgate.net/deref/https%3A%2F%2Ffanyv88.com%3A443%2Fhttp%2Fwww.ijsr.net?_tp=eyJjb250ZXh0
Ijp7ImZpcnN0UGFnZSI6InB1YmxpY2F0aW9uIiwicGFnZSI6InB1YmxpY2F0aW9uI
n19
http://www.ijresm.com/

18

You might also like