Created
January 4, 2012 13:17
-
-
Save Rembane/1559991 to your computer and use it in GitHub Desktop.
Formulär!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Vanlig textruta --> | |
<input type="text" value="" /> | |
<br /> | |
<!-- Checkbox --> | |
<input type="checkbox" value="" /> | |
<br /> | |
<!-- Stor textruta --> | |
<textarea cols="25" rows="25"></textarea> | |
<br /> | |
<!-- Knapp --> | |
<input type="submit" value="Hje!" /> | |
<p></p> | |
<!-- Med labels --> | |
<label for="txt1">Rutan med text!</label> | |
<input type="text" id="txt1" value="" /> | |
<br /> | |
<!-- Använd name-attributet för att det ska stå något fint före innehållet när du skickar grejerna, eller value-attributet i checkboxfallet. --> | |
<!-- Vanlig textruta --> | |
<input type="text" name="Texten_som_syns_innan_innehållet_när_du_läser_mailet" /> | |
<br /> | |
<!-- Checkbox --> | |
<input type="checkbox" value="HJE!" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment