49 lines
909 B
HTML
49 lines
909 B
HTML
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Informasi Pakan</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
|
|
<!-- HEADER -->
|
|
<div class="header">
|
|
<div class="header-content">
|
|
<h2>KATSU</h2>
|
|
<div class="nav">
|
|
<a href="index.html">Home</a>
|
|
<a href="informasi.html">Informasi</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- CONTENT -->
|
|
<div class="container">
|
|
|
|
<div class="card">
|
|
|
|
<!-- JUDUL DI DALAM CARD -->
|
|
<h3 class="title">Riwayat Jadwal Pakan</h3>
|
|
|
|
<table id="tabelData">
|
|
<thead>
|
|
<tr>
|
|
<th>Status</th>
|
|
<th>Jam</th>
|
|
<th>Sisa (%)</th>
|
|
<th>Pakan (%)</th>
|
|
<th>Gram</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody></tbody>
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script type="module" src="app.js"></script>
|
|
|
|
</body>
|
|
</html> |