DEV Community

MANOJ K
MANOJ K

Posted on

HTML & CSS :

****What is HTML?

  • HTML stands for Hyper Text Markup Language

  • HTML is the standard markup language for creating Web pages

  • HTML describes the structure of a Web page

  • HTML consists of a series of elements

  • HTML elements tell the browser how to display the content

  • HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.

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

<h1>Heading</h1>
<p>paragraph.</p>

</body>
</html> 
Enter fullscreen mode Exit fullscreen mode

What is CSS?

CSS is the language we use to style a Web page.

  • CSS stands for Cascading Style Sheets.

  • CSS describes how HTML elements are to be displayed on screen, paper, or in other media.

  • CSS saves a lot of work. It can control the layout of multiple web pages all at once.

  • External stylesheets are stored in CSS files.

<!DOCTYPE html>
<html>
<head>
<style>
body {
  background-color: lightblue;
}

h1 {
  color: white;
  text-align: center;
}

p {
  font-family: verdana;
  font-size: 20px;
}
</style>
</head>
<body>

<h1>My First CSS Example</h1>
<p>This is a paragraph.</p>

</body>
</html>
Enter fullscreen mode Exit fullscreen mode

Referance

https://www.w3schools.com/html/html_intro.asp
https://www.geeksforgeeks.org/css/css-cheat-sheet-a-basic-guide-to-css/

Top comments (0)