📄 Beginner

CSS Tutorial for Beginners

CSS (Cascading Style Sheets) is used to style and layout web pages. In this tutorial, you'll learn how CSS works and how to create your first styled web page.

Basic CSS Pagecss
body {
						background-color: #f0f0f0;
						font-family: Arial, sans-serif;
						margin: 0;
						padding: 0;
					}

					h1 {
						color: #333;
						text-align: center;
					}

					p {
						color: #666;
						text-align: center;
					}

This is a basic CSS page that styles a web page with a background color, font family, margin, padding, and text alignment.