summaryrefslogtreecommitdiff
path: root/old/published/Webmonkey/formssample.html
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2020-04-28 10:21:17 -0400
committerluxagraf <sng@luxagraf.net>2020-04-28 10:21:17 -0400
commita222e73b9d352f7dd53027832d04dc531cdf217e (patch)
treeccc1b5c54986980141faee867318ca80e45ebef5 /old/published/Webmonkey/formssample.html
parent1337c4eafe29252d892d2bde0276212ac77382d4 (diff)
parente67317b0a6f02fd75f198cd22f83c20076c61dcf (diff)
Merge remote-tracking branch 'wired/master' adding wired to conde
Diffstat (limited to 'old/published/Webmonkey/formssample.html')
-rw-r--r--old/published/Webmonkey/formssample.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/old/published/Webmonkey/formssample.html b/old/published/Webmonkey/formssample.html
new file mode 100644
index 0000000..f927240
--- /dev/null
+++ b/old/published/Webmonkey/formssample.html
@@ -0,0 +1 @@
+<html> <head> <style type="text/css"> form.myform { margin-left: 155px; width: 300px; } form.myform fieldset { margin-bottom: 10px; margin-left: -155px; background: #d0d9fd; } form.myform legend { padding: 0 2px; font-weight: bold; font-size: 1.3em; } form.myform fieldset ul { margin: 0 0 0 155px; padding: 0; } form.myform fieldset li { list-style: none; padding: 10px; margin: 0; clear: both; } form.myform label { font-weight: bold; float: left; text-align:right; margin-left: -155px; /*width of left column*/ width: 150px; /*width of labels. Should be smaller than left column (155px) to create some right margin*/ } form.myform p{ margin-left: 155px; } form.myform input, form.myform textarea { border: solid 1px #85b1de; background: #fff url('formbg.gif') repeat-x; background-position: top; } form.myform input:focus, form.myform textarea:focus { background-image: none; background-color: #ffffff; border: solid 1px #fded7f; } </style> </head> <body> <form action="#" class="myform"> <fieldset> <legend>Leave a Comment</legend> <ul> <li> <label for="name">Name:</label> <input id="name" /> </li> <li> <label for="email">Email:</label> <input id="email" /> </li> <li> <label for="comment">Comments:</label> <textarea id="comments" rows="7" cols="25"></textarea> </li> <li> <label for="remember">Remember Me:</label> <input type="radio" name="remember" value="true" />Yes <input type="radio" name="remember" value="false" checked/>No </li> </ul> </fieldset> <p><input type="submit" value="Leave comment" /></p> </form> </body> </html> \ No newline at end of file