List of Abbreviation
List of Abbreviation
HTML, which stands for Hyper-Text Markup Language, is the standard markup language used
to create and design documents on the World Wide Web. It is the basic building block for
creating webpages and web applications. HTML provides a set of elements or tags that structure
the content on a webpage, such as headings, paragraphs, lists, links, images, forms, and more.
HTML uses a markup syntax to define the structure of a document. Each HTML element is
represented by a tag, surrounded by angle brackets. For example, the <p> tag is used to define a
paragraph, and the <a> tag is used for creating hyperlinks.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<h1>Hello, World!</h1>
</body>
</html>
In this example, the HTML document starts with the <!DOCTYPE html> declaration, followed
by the <html> element that contains the entire document. The <head> section contains meta-
information about the document, such as character set and viewport settings, while the <body>
section contains the actual content of the webpage.
HTML is often used in conjunction with other web technologies such as CSS (Cascading Style
Sheets) for styling and layout, and JavaScript for interactivity and dynamic behavior. Together,
these technologies enable the creation of rich and interactive web experiences.
What is CSS ?
CSS, which stands for Cascading Style Sheets, is a style sheet language used to describe the
presentation of a document written in HTML or XML. CSS defines how elements in a web page
should be displayed, specifying aspects such as layout, colors, fonts, spacing, and more. By
separating the content (HTML) from its presentation (CSS), web developers can achieve greater
flexibility and maintainability in designing web pages.
1. Selectors: CSS uses selectors to target HTML elements and apply styles to them. Selectors can
target specific elements, classes, IDs, or even more complex structures.
2. Properties: CSS properties define the visual characteristics of the selected elements. For
example, properties like color, font-size, margin, padding, and border can be used to control the
appearance of elements.
3. Values: Properties are assigned values that determine how they should be applied. For
instance, color: blue; sets the text color to blue, and font-size: 16px; sets the font size to 16
pixels.
4. Selectors and Declarations Block: CSS rules are typically written in the form of a selector
followed by a set of declarations enclosed in curly braces. Each declaration consists of a property
and its associated value.
/* CSS stylesheet */
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
h1 {
color: navy;
text-align: center;
p{
color: #333;
line-height: 1.5;
In this example, the CSS code sets the font family and background color for the body element,
the text color and alignment for h1 headings, and the text color and line height for paragraphs (p
elements).
By using CSS, web developers can create visually appealing and consistent designs across
multiple pages of a website or application. CSS can be applied internally within an HTML
document, externally as a separate style sheet, or inline directly within HTML elements.
What is JS ?
1. Client-Side Scripting: JavaScript is mainly used for client-side scripting, meaning it runs in the
user's web browser. It allows developers to manipulate the Document Object Model (DOM) of a
webpage, making it possible to dynamically update content, handle user interactions, and modify
the structure and style of a webpage.
Here's a simple example of JavaScript code that displays an alert when a button is clicked:
// JavaScript code
function showAlert() {
alert('Hello, World!');
In this example, a function named showAlert is defined, and an HTML button element can call
this function when clicked, triggering the display of an alert with the message "Hello, World!"
JavaScript is a fundamental technology for web development and plays a key role in creating
interactive and dynamic web experiences. It is often used alongside HTML and CSS to build
modern, feature-rich web applications.
Bibliography
For successful completing our project, we have taken help from following websites
links:
1. https://www.google.com
2. https://www.youtube.com
3. https://chat.openai.com