init commit

This commit is contained in:
Joshua Ashton
2025-01-15 10:03:08 -07:00
commit 8b9e730f4e
4 changed files with 55 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
body {
margin: 2vw;
background-color: #091A19;
}
#content {}
#header-container {
width: 100%;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
}
#header-container h1 {
color: #E0EAD9;
}
#pic-container {
margin: 0 auto;
width: 50%;
}
img {
width: 100%;
border-radius: 50%;
aspect-ratio: 1 / 1;
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 381 KiB

+25
View File
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/styles.css">
<title>Birthday | Josh Ashton</title>
</head>
<body>
<?php
echo "
<div id=\"content\">
<div id=\"header-container\">
<h1>Happy Birthday!</h1>
</div>
<div id=\"pic-container\">
<img src=\"./img/birthday-AIgenerated.jpg\" />
</div>
</div>
";
?>
</body>
</html>
+1
View File
@@ -0,0 +1 @@
<h1>Test</h1>