CSS Notes, Examples & Assignment for Beginners

CSS Notes, Examples & Assignment for Beginners

h1{

    color: blue;

    font-size: 20px;

}
<!DOCTYPE html>

<html>

<head>

    <title>Without CSS</title>

</head>

<body>

<h1>Welcome to UICT</h1>

</body>

</html>
<!DOCTYPE html>

<html>

<head>

<style>

h1{

    color:red;

    font-size:30px;

    text-align:center;

}

</style>

</head>

<body>

<h1>Welcome to UICT</h1>

</body>

</html>
h1{

    color:red;

}