init commit
This commit is contained in:
@@ -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 |
@@ -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>
|
||||||
Reference in New Issue
Block a user