-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
36 lines (31 loc) · 885 Bytes
/
index.php
File metadata and controls
36 lines (31 loc) · 885 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
33
34
35
36
<?php
include("private/utils/lastedit.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<title>My Project</title>
<!-- To link external styling file -->
<link rel="stylesheet" href="styles/index.css">
</head>
<body>
<header>
<h6><?php echo "I have nutsack cancer" ?></h6>
</header>
<main>
<div id="content">
<a id="joe" href="joe.php">Joe</a>
<h2>Professional gang member</h2>
<h3><a href="bio.php">About Me</a></h3>
<h3><a href="guestbook.php">Sign the Guestbook</a></h3>
</div>
</main>
<footer>
<?php echo lastEdit(__FILE__) ?>
<p>© 2025 RuinedNet</p>
</footer>
</body>
</html>