test commit

This commit is contained in:
Tristan Ancelet 2023-05-06 20:05:15 -05:00
parent 3b60a4a8e1
commit 9e6369d136
3 changed files with 23 additions and 12 deletions

3
css/main.css Normal file
View File

@ -0,0 +1,3 @@
nav {
background-color: #87CBB9;
}

20
index.php Normal file
View File

@ -0,0 +1,20 @@
<!Doctype html>
<!--
Color pallet: https://colorhunt.co/palette/b9eddd87cbb9569daa577d86
-->
<html>
<head>
<link rel="sytlesheet" href="css/main.css">
<title>This is a test</title>
</head>
</body>
<nav>
This is a test
</nav>
<?php
$a = 42;
echo "The number is $a"
?>
</body>
</html>

View File

@ -1,12 +0,0 @@
<!Doctype html>
<html>
<head>
<title>This is a test</title>
</head>
<?php
$a = 42;
echo "The number is $a"
?>
</html>