DEV Community

KIRAN RAJ
KIRAN RAJ

Posted on

HTML and CSS

  1. 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>my project</title>
</head>
<body>

<h1>HTML program</h1>
<p>HTML is the stands for HyperText Markup Language.</p>

</body>
</html> 
Enter fullscreen mode Exit fullscreen mode
  1. 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
 body {
  background-color: lightblue;
}

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

p {
  font-family: verdana;
  font-size: 20px;
}
Enter fullscreen mode Exit fullscreen mode

reference:

https://www.w3schools.com/html/html_intro.asp
https://www.w3schools.com/css/css_intro.asp

Top comments (0)