HTML Introduction
HTML Introduction
HTML5 is the latest version of HTML, and it introduced many new features such as improved
support for multimedia (audio, video), better support for mobile devices, and semantic tags (e.g.,
<header>, <footer>, <article>) to improve the structure and accessibility of web pages.
Inline CSS: Directly within HTML elements using the style attribute.
Internal CSS: Inside a <style> block in the HTML document's <head>.
External CSS: Stored in a separate .css file that is linked to the HTML document.
CSS has advanced with frameworks like Bootstrap, which simplifies web design by providing
pre-built design components.
An XML document begins with a declaration that defines the version and encoding, followed by
tags that define the structure of the data. For example:
xml
Copy code
<?xml version="1.0" encoding="UTF-8"?>
<book>
<title>Programming Fundamentals</title>
<author>John Doe</author>
<year>2024</year>
</book>
While HTML and CSS are mainly used for web development, XML is commonly used in data
exchange, configurations, and document storage.
Together, HTML, CSS, and XML form the backbone of modern web design and web application
development. HTML and CSS create the user interface, while XML handles the behind-the-
scenes data handling.