<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Belajar Javascript</title>
<style>
body {
font-size: small;
}
</style>
</head>
<body id="demo">
<h1>Hello World!</h1>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
<button onclick="document.getElementById('demo').style.fontSize='small'">Small</button>
<button onclick="document.getElementById('demo').style.fontSize='medium'">Medium</button>
<button onclick="document.getElementById('demo').style.fontSize='large'">Large</button>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.