Skip to content

Instantly share code, notes, and snippets.

@sryderdev
Created December 5, 2020 11:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sryderdev/01cdd80f79bc9f7c9bbfc6f8f9d8226c to your computer and use it in GitHub Desktop.
Save sryderdev/01cdd80f79bc9f7c9bbfc6f8f9d8226c to your computer and use it in GitHub Desktop.
Basic Form
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Netlify Forms</title>
</head>
<body>
<div class="container">
<h2>Programmer Friends</h2>
<form method="post" name="Frie">
<p>
<label for="friend-name">Name:</label>
<input type="text" name="name" id="name" />
</p>
<p>
<label for="Country">Country Of Residence:</label>
<input type="text" name="country" id="country" />
</p>
<p>
<label for="stack">Your Tech Stack:</label>
<select id="stack" name="stack">
<option value="front-end">Front-End</option>
<option value="back-end">Back-End</option>
<option value="mobile-developer">Mobile-Developer</option>
<option value="full-stack">Full-Stack</option>
</select>
</p>
<p>
<input type="submit" />
</p>
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment