18 lines
438 B
HTML
18 lines
438 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>My Cool Guestbook!</title>
|
|
<link rel="stylesheet" href="../readable.css"</link>
|
|
</head>
|
|
<body>
|
|
This is a guestbook, made by fbievan
|
|
<form action="./submit.php" method="post">
|
|
<input type="text" name="fname" placeholder="name"></input>
|
|
<input type="text" name="fmessage" placeholder="Message"></input>
|
|
<input type="submit"></input>
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|