Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
Buat baru.
  • Loading branch information
fwzakiy committed Jan 1, 2024
1 parent 51f9692 commit a1152cc
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kalender Akademik 2022-2023</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 20px;
}

h1 {
text-align: center;
color: #333;
}

table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}

th, td {
padding: 10px;
border: 1px solid #ddd;
text-align: left;
}

th {
background-color: #f2f2f2;
}

tr:hover {
background-color: #f5f5f5;
}
</style>
</head>
<body>
<h1>Kalender Akademik Universitas Darunnajah 2022-2023</h1>

<table>
<tr>
<th>Semester</th>
<th>Tanggal Mulai</th>
<th>Tanggal Selesai</th>
<th>Keterangan</th>
</tr>
<tr>
<td>Semester Ganjil</td>
<td>1 September 2022</td>
<td>15 Januari 2023</td>
<td>Aktivitas Akademik Semester Ganjil</td>
</tr>
<tr>
<td>Semester Genap</td>
<td>1 Februari 2023</td>
<td>15 Juli 2023</td>
<td>Aktivitas Akademik Semester Genap</td>
</tr>
<!-- Tambahkan baris lain sesuai kebutuhan -->
</table>
</body>
</html>

0 comments on commit a1152cc

Please sign in to comment.