forked from Github/Axter-Stash
27 lines
832 B
HTML
27 lines
832 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Your Website</title>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to My Website</h1>
|
|
<p>This is a simple static website.</p>
|
|
|
|
<form action="https://fabform.io/f/YOUR_FORM_ENDPOINT" method="post">
|
|
<!-- Replace "YOUR_FORM_ENDPOINT" with your actual FabForm form endpoint -->
|
|
|
|
<label for="name">Name:</label>
|
|
<input type="text" id="name" name="name" required><br>
|
|
|
|
<label for="email">Email:</label>
|
|
<input type="email" id="email" name="email" required><br>
|
|
|
|
<label for="message">Message:</label>
|
|
<textarea id="message" name="message" required></textarea><br>
|
|
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</body>
|
|
</html> |