Skip to content

Instantly share code, notes, and snippets.

@steweir
steweir / form.html
Last active December 21, 2023 06:57 — forked from redclov3r/index.html
Fancy Forms
<h1>Fancy Form</h1>
<form>
<fieldset>
<legend> Classic Inputs</legend>
<p>First we'll start off with some classic textinput fields for single lines, passwords and multiline-text. These have been around for a long time and form a backbone for most webforms.</p>
<p>
<input type="text" id="textinput" />
<label for="textinput">Input (text)</label>
</p>
<p>