Introduction to CSS
Cascading Style Sheets (CSS) is a stylesheet language used to describe the presentation of a document written in HTML. CSS describes how elements should be rendered on screen, on paper, or in other media.
With CSS, you can change the color, font, and layout of components on a web page, among other things, to create aesthetically pleasing and responsive designs.
Getting Started
To start using CSS, include it in your HTML file within a <style> tag, or link an external stylesheet using a <link> tag. Here's a simple example:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sample Page</title>
<style>
body {
background-color: lightblue;
}
</style>
</head>
<body>
<h1>Hello, World!</h1>
</body>
</html>