5 minute challenges.

This commit is contained in:
2025-01-23 20:06:12 +00:00
parent 8b9e730f4e
commit 078e311273
13 changed files with 50 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<script>alert("Hello!");</script>
<style>
html {
background-color: pink;
}
</style>
</head>
<body>
<h1>First 5 Minute Website</h1>
<p>Lorem ipsum stuff.</p>
<img src="https://cdn.pixabay.com/photo/2016/07/07/16/46/dice-1502706_640.jpg" />
</body>
</html>
+22
View File
@@ -0,0 +1,22 @@
<?php
$html = <<<EOD
<!doctype html>
<html lang="en">
<head>
<style>
* {
background-color: #BADDAD;
}
</style>
</head>
<body>
<h1>Hello cruel world!</h1>
<p>Here's a nice forest image that I quickly found.</p>
<img src="https://media.istockphoto.com/id/1419410282/photo/silent-forest-in-spring-with-beautiful-bright-sun-rays.jpg?s=612x612&w=0&k=20&c=UHeb1pGOw6ozr6utsenXHhV19vW6oiPIxDqhKCS2Llk=" />
</body>
</html>
EOD;
echo $html;
?>
View File
View File
View File
View File
View File
View File
View File
View File
View File
View File
+9 -1
View File
@@ -1 +1,9 @@
<h1>Test</h1>
<!DOCTYPE html>
<html lang="en">
<head></head>
<body>
<h1>Josh Ashton's LAMPP page.</h1>
<p>Someday, this will be an awesome page!</p>
<a href="index.php">This link will help Jeff grade this assignment</a>
</body>
</html>