HTML generated banner (BTW Steves HTML blog rules ok)

Marquee

Steves html blog

Thursday, 3 February 2011

Simple comments box

Comments:




<!-- HTML codes by Quackit.com -->
<form action="/html/tags/html_form_tag_action.cfm" method="post">
  Comments:<br />
  <textarea name="comments" id="comments">
  Steves HTML bloggers can comment here!  </textarea><br />
  <input type="submit" value="Submit" />
</form>
<p style="font-size:10px;"><a href="http://www.quackit.com/create-a-website/%22%3ECreate website</a></p>

The above code translates to the comments box at the top, but when you use it you'll want to change the bit thats says "Steves HTML bloggers can comment here!" to whatever you want the default message to be.

Sunday, 19 December 2010

Scroll boxes

As you can see, once there's enough text in this box, the box will grow scroll bars... that's why we call it a scroll box! You could also place an image into the scroll box. You can add unlimited text and images to the scroll box using the code below.


<!-- HTML Codes by Quackit.com -->
<div style="height:120px;width:250px;font:16px/26px Georgia, Garamond, Serif;overflow:scroll;">
As you can see, once there's enough text in this box, the box will grow scroll bars... that's why we call it a scroll box! You could also place an image into the scroll box. You can add unlimited text and images to the scroll box using the code below.
</div>
<p style="font-family:verdana,arial,sans-serif;font-size:10px;"><a href="http://www.quackit.com/html/codes/html_scroll_box.cfm%22%3EHTML scrollbox</a></p>