Files
cs2440/5min/day12/home.php
T
2025-03-31 12:45:58 -06:00

18 lines
264 B
PHP
Executable File

<!doctype html>
<html lang="en">
<head>
<title>Home</title>
<link href="css/styles.css" type="text/css" rel="stylesheet">
<script src="js/index.js"></script>
</head>
<body>
<?php
include_once ('nav.php');
?>
<h1>Hello home world!</h1>
</body>
</html>