HTML and 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 h…


This content originally appeared on DEV Community and was authored by KIRAN RAJ

  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> 
  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;
}

reference:

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


This content originally appeared on DEV Community and was authored by KIRAN RAJ


Print Share Comment Cite Upload Translate Updates
APA

KIRAN RAJ | Sciencx (2025-09-24T14:27:12+00:00) HTML and CSS. Retrieved from https://www.scien.cx/2025/09/24/html-and-css/

MLA
" » HTML and CSS." KIRAN RAJ | Sciencx - Wednesday September 24, 2025, https://www.scien.cx/2025/09/24/html-and-css/
HARVARD
KIRAN RAJ | Sciencx Wednesday September 24, 2025 » HTML and CSS., viewed ,<https://www.scien.cx/2025/09/24/html-and-css/>
VANCOUVER
KIRAN RAJ | Sciencx - » HTML and CSS. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2025/09/24/html-and-css/
CHICAGO
" » HTML and CSS." KIRAN RAJ | Sciencx - Accessed . https://www.scien.cx/2025/09/24/html-and-css/
IEEE
" » HTML and CSS." KIRAN RAJ | Sciencx [Online]. Available: https://www.scien.cx/2025/09/24/html-and-css/. [Accessed: ]
rf:citation
» HTML and CSS | KIRAN RAJ | Sciencx | https://www.scien.cx/2025/09/24/html-and-css/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.