-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
66 lines (64 loc) · 3.25 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<?php include 'head-template.php'?>
<link rel="stylesheet" tyoe="css/text" href="media/css/index.css">
</head>
<body>
<?php include 'header-template.php'?>
<div class="body">
<main class="container">
<div class="main">
<h2><b>Pengumuman PPDB 2022</b></h2>
<h1><b>SMA Pradita Dirgantara</b></h1>
<div class="row justify-content-center timer-app">
<div class="timer-app-container">
<table id="timer-table" class="table table-borderless table-responsive">
<tr>
<th>Hari</th>
<th></th>
<th>Jam</th>
<th></th>
<th>Menit</th>
<th></th>
<th>Detik</th>
</tr>
<tr>
<td id="timer-days" class="display-2">0</td>
<td class="display-1">:</td>
<td id="timer-hours" class="display-2">0</td>
<td class="display-1">:</td>
<td id="timer-minutes" class="display-2">0</td>
<td class="display-1">:</td>
<td id="timer-seconds" class="display-2">0</td>
</tr>
</table>
<!--
<div class="card">
<p>Hari</p>
<p id="timer-days">0</p>
</div>
<div class="card">
<p>Jam</p>
<p id="timer-hours">0</p>
</div>
<div class="card">
<p>Menit</p>
<p id="timer-minutes">0</p>
</div>
<div class="card">
<p>Detik</p>
<p id="timer-seconds">0</p>
</div>
-->
</div>
</div>
<p id="text-pengumuman"><u>PENGUMUMAN AKAN DIBUKA PADA TANGGAL 20 JANUARI 2022 PUKUL 15.00 WIB</u></p>
</div>
</main>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
<script src="media/js/index.js"></script>
<?php include 'footer-template.php'?>
</body>
</html>