CSS Genel - Basit Bir CSS Kodu Örneği

Konuya git Çalıştır
<!DOCTYPE html>
<html>
<head>
<style>
body {
    background-color: red;
}

h1 {
    color: yellow;
    text-align: center;
}

p {
    font-family: verdana;
    font-size: 20px;
}
</style>
</head>
<body>

<h1>İlk CSS Örneği</h1>
<p>Paragraf</p>

</body>
</html>