Hi there. I created my own form in weebly using embed code. What do I need to do to make sure I receive the info someone puts in the form once they press submit.
Here is the code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<h1 style="font-size: 25px; text-align: center; color: black; font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;">
<u>Contact Form</u>
<br />
</h1>
<p style="text-align: center; font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; font-size: 18px;">
<strong
><u>
Fill out this contact form to get started with your order. Use the box
below to let us know which service you need.
</u></strong
>
</p>
<br />
<form style="text-align: center; font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; font-size: 18px;">
<label for="first-name"> First Name:</label>
<input
type="text"
name="name"
placeholder="Enter your first name."
required
/>
<label for="last-name"> Last Name:</label>
<input
type="text"
name="name"
placeholder="Enter your last name."
required
/>
<br /><br />
<label for="email">Email Address:</label>
<input
type="email"
name="email"
id="email"
placeholder="Enter your email."
required
/>
<br /><br />
<textarea
name="message"
cols="53"
rows="20"
placeholder="Enter your message about which service you need."
required
></textarea>
<br /><br />
<input type="submit" value="Submit" />
</form>
</body>
</html>