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

28 lines
498 B
PHP
Executable File

<!doctype html>
<html lang="en">
<head>
<title>Day 3</title>
<style>
body {
background-color: #DADD1E;
}
img {
width: 50%;
}
</style>
</head>
<body>
<?php echo '<h1>Day 3</h1>'; ?>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<?php echo '<img src="https://images.unsplash.com/photo-1448375240586-882707db888b?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8Zm9yZXN0fGVufDB8fDB8fHww" />'; ?>
</body>
</html>