Styling Your Web Page with CSS

Learn how to make your web page look beautiful using CSS

CSS (Cascading Style Sheets) is used to style HTML elements. With CSS, you can control colors, fonts, layouts, and more.

<!DOCTYPE html>
<html>
<head>
    <title>CodeWithSaeqa</title>
    <style>
        body {
            background-color: #f0f8ff;
            font-family: Arial, sans-serif;
        }
        h1 {
            color: #ff6600;
        }
        p {
            color: #333333;
        }
    </style>
</head>
<body>
    <h1>Welcome to CodeWithSaeqa!</h1>
    <p>This page looks much better with CSS!</p>
</body>
</html>

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *