Files
cs2440/5min/day06/index.php
T
2025-03-04 15:50:18 -07:00

20 lines
265 B
PHP

<!doctype html>
<html lang="en">
<head>
<title>Day 6</title>
</head>
<body>
<h1>Hello cruel world!</h1>
<form>
<?php
echo '<input type="text" placeholder="Lorem ipsum">
<input type="text" placeholder="dolor">';
?>
</form>
</body>
</html