-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
32 lines (31 loc) · 780 Bytes
/
Copy pathindex.php
File metadata and controls
32 lines (31 loc) · 780 Bytes
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
<?php
$title = "Home";
$page = "home";
include "./includes/header.php";
?>
<section class="footer">
<div class="social">
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-snapchat"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-facebook-f"></i></a>
</div>
<ul class="list">
<li>
<a href="./index.php">Home</a>
</li>
<li>
<a href="./about.php">About</a>
</li>
<li>
<a href="./hacking.php">floms</a>
</li>
<li>
<a href="#">Gallery</a>
</li>
</ul>
<p class="copyright">
kurdish @ 2021
</p>
</section>
<?php include "includes/bottom.php" ?>