20 lines
265 B
PHP
Executable File
20 lines
265 B
PHP
Executable File
<!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
|