WEB DEVELOPMENT : is the process of creating websites and web applications that run on the internet.
- Users access websites through web browsers.
- The browser sends a request to the web server.
- The server processes the request and may access a database.
- The server sends a response back to the browser.
- The browser displays the webpage securely using HTTPS.
HTML TAGS:
- HTML documents consist of a series of elements, and these elements are defined using HTML tags.
- HTML tags are essential building blocks that define the structure and content of a webpage.
- In this article, we'll explore what HTML tags are, how they work, and provide detailed examples of common HTML tags.
TYPES OF HTML TAG:
1. <html> Tag
2. <head> Tag
3. Paragraph Tag <p>
4. Anchor Tag <a>
5. Image Tag <img>
6. bold Tag <b>
PARAGRAPH TAG : is used to define a paragraph of text. It automatically adds space before and after the content, making the text easier to read and well-structured.
SYNTAX:
<p>This is text in a paragraph.</p>
EXAMPLE :
<!DOCTYPE html>
<html lang="en">
<head>
<style>
p {
color: green;
font-size: 30px;
font-weight: 700;
}
</style>
</head>
<body>
<p>This is paragraph element</p>
</body>
</html>
BORDER RADIUS: is used to create rounded corners for HTML elements. It enhances the visual appearance of web pages by giving elements a smoother and more modern design.
SYNTAX:
border-radius: 1-4 length | % / 1-4 length | %|initial | inherit;
OUTPUT:




Top comments (0)