Skip to content

Instantly share code, notes, and snippets.

@achingachris
Created August 4, 2022 22:20
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 achingachris/f3476d135cd019724bf2a59c3a78f7a3 to your computer and use it in GitHub Desktop.
Save achingachris/f3476d135cd019724bf2a59c3a78f7a3 to your computer and use it in GitHub Desktop.
;<form id='contactForm' action='https://fabform.io/f/G1fiFX-' method='post'>
{/* Name Input */}
<div className='form-floating mb-3'>
<input
className='form-control'
id='name'
name='name'
type='text'
placeholder='Name'
/>
<label htmlFor='name'>Name</label>
</div>
{/* best programming Language */}
<div className='form-floating mb-3'>
<input
className='form-control'
id='bestProgrammingLanguage'
name='bestProgrammingLanguage'
type='text'
placeholder='Best Programming Language'
/>
<label htmlFor='bestProgrammingLanguage'>Best Programming Language</label>
</div>
{/* best Framework */}
<div className='form-floating mb-3'>
<input
className='form-control'
id='bestFramework'
name='bestFramework'
type='text'
placeholder='Best Framework'
/>
<label htmlFor='bestFramework'>Best Framework</label>
</div>
{/* Submit button */}
<div className='d-grid'>
<button className='btn btn-primary btn-lg' id='submitButton' type='submit'>
Submit
</button>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment