-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathservices.php
More file actions
23 lines (23 loc) · 825 Bytes
/
Copy pathservices.php
File metadata and controls
23 lines (23 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<?php
// Menyertakan file header.php yang berisi elemen-elemen <head> seperti meta tag, link CSS, dll.
include 'components/header.php';
?>
</head>
<body>
<?php
// Menyertakan file navbar.php yang berisi navigasi utama
include 'components/navbar.php';
// Menyertakan file navbar_services.php yang berisi navigasi khusus halaman layanan
include 'components/navbar_services.php';
// Menyertakan file content_services.php yang berisi konten utama halaman layanan
include 'components/content_services.php';
// Menyertakan file footer.php yang berisi elemen footer
include 'components/footer.php';
// Menyertakan file script.php yang berisi script JavaScript
include 'components/script.php';
?>
</body>
</html>