CSS HTML Bağlantısı - Dahili CSS Kullanımı

Konuya git Çalıştır
<!DOCTYPE html>
<html>
<head>
<style>
body {
    background-color: #eeff44;
}
h1 {
    color: #ff44cc;
    margin-left: 40px;
} 
</style>
</head>
<body>

<h1>Başlık</h1>
<p>Paragraf</p>

</body>
</html>