mirror of
https://github.com/BenDWit/freecodecamp.git
synced 2026-02-21 08:49:59 +01:00
old stuff
This commit is contained in:
parent
fc385a818d
commit
20c9e4212c
8 changed files with 158 additions and 0 deletions
23
Certified_Full_Stack_Developer/CSS/Contact_Form/index.html
Normal file
23
Certified_Full_Stack_Developer/CSS/Contact_Form/index.html
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<!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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue