-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.php
More file actions
15 lines (14 loc) · 958 Bytes
/
Copy pathabout.php
File metadata and controls
15 lines (14 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html lang="en">
<head>
<?php include 'components/header.php'; ?> <!-- Menyertakan file header.php yang berisi elemen-elemen header -->
<link rel="stylesheet" href="assets/css/style.css"> <!-- Menyertakan file CSS untuk styling halaman -->
</head>
<body>
<?php include 'components/navbar.php'; ?> <!-- Menyertakan file navbar.php yang berisi elemen-elemen navigasi utama -->
<?php include 'components/navbar_about.php'; ?> <!-- Menyertakan file navbar_about.php yang berisi elemen-elemen navigasi khusus halaman about -->
<?php include 'components/content_about.php'; ?> <!-- Menyertakan file content_about.php yang berisi konten utama halaman about -->
<?php include 'components/footer.php'; ?> <!-- Menyertakan file footer.php yang berisi elemen-elemen footer -->
<?php include 'components/script.php'; ?> <!-- Menyertakan file script.php yang berisi elemen-elemen script JavaScript -->
</body>
</html>