20 lines
450 B
PHP
Executable File
20 lines
450 B
PHP
Executable File
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>Dummy Title</title>
|
|
<link href="css/styles.css" type="text/css" rel="stylesheet">
|
|
<script src="js/index.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Hello cruel world!</h1>
|
|
<form method="get">
|
|
<input name="something1" placeholder="Enter Something 1">
|
|
<input name="something2" placeholder="Enter Something 2">
|
|
<button <?php echo 'type="submit"'; ?>>Submit</button>
|
|
</form>
|
|
</body>
|
|
|
|
</html>
|