24 lines
525 B
HTML
24 lines
525 B
HTML
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Grafik Persamaan Fungsi</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<h2>Grafik Persamaan Fungsi</h2>
|
|
|
|
<input type="text" id="fungsi" placeholder="Contoh: x*x - 5*x + 6">
|
|
<button onclick="hitung()">Hitung</button>
|
|
|
|
<h3 id="hasil">Akar: -</h3>
|
|
|
|
<canvas id="grafik"></canvas>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |