mirror of
https://github.com/BenDWit/freecodecamp.git
synced 2025-12-23 13:09:59 +01:00
23 lines
No EOL
793 B
HTML
23 lines
No EOL
793 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Contact Form</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="form-container">
|
|
<form action="">
|
|
<h2>Leave a message</h2>
|
|
<label for="full-name">full name:</label>
|
|
<input type="text" name="full-name" id="full-name" required>
|
|
<label for="email">email: </label>
|
|
<input type="email" name="email" id="email" required>
|
|
<label for="message">type your message:</label>
|
|
<textarea name="message" id="message" required></textarea>
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |