JavaScript Giriş - JavaScript ile HTML Stil Değiştirme

Konuya git Çalıştır
     
<!DOCTYPE html>
<html>
<head>
<title>Sayfa başlığı</title>
</head>
<body>
<h2>JavaScript ile neler yapılabilir?</h2>

<p id="demo">JavaScript ile HTML elementine ait stiller değiştirilebilir</p>

<button type="button" onclick="document.getElementById('demo').style.fontSize='50px'">Yazıyı büyüt!</button>
</body> </html>