-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Buat baru.
- Loading branch information
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |