DEV Community

Vinoth Kumar
Vinoth Kumar

Posted on • Edited on

WEB DEVELOPMANT

WEB DEVELOPMENT : is the process of creating websites and web applications that run on the internet.

  1. Users access websites through web browsers.
  2. The browser sends a request to the web server.
  3. The server processes the request and may access a database.
  4. The server sends a response back to the browser.
  5. The browser displays the webpage securely using HTTPS.

HTML TAGS:

  1. HTML documents consist of a series of elements, and these elements are defined using HTML tags.
  2. HTML tags are essential building blocks that define the structure and content of a webpage.
  3. 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>
Enter fullscreen mode Exit fullscreen mode

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>

Enter fullscreen mode Exit fullscreen mode

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;

Enter fullscreen mode Exit fullscreen mode

OUTPUT:

Top comments (0)