|
Bold:
<b> Insert Text To be Bolded Here </b>
Underline:
<u>Underline this text</u>
New Line (Break):
<br> (no closing arguement is required)
Multiple new lines can be used.
Blank Space:
HTML is formatless, meaning that more than
one blank spaces between words are ignored...
Insert "hard" blank spaces by inserting
&bnsp;
Multiple blank spaces can be used.
Custom Codes:
Custom codes can be inserted as part of
questions to track respondents or pipe text.
More HTML:
Other HTML Codes are also supported.
The following link is an excellent online source for HTML.
Close the Thank You Page Using a Timer
A timer can close the Thank You window.
Set the timer milliseconds (3000=3 seconds).
You can also reset the size of the window
(here 400 x 400 pixels).
<script type="text/javascript">
<!--
function auto_close(delay)
{ setTimeout("self.close();",delay); }
//--></script>
<script type="text/javascript">
auto_close(3000);
window.opener = 'm';
window.resizeTo(400,400);
</script>
|
Font Color:
<font color="#FF0000">Red</font>
where other codes are::
FF0000 Red 00FF00
Green 0000FF Blue
FFFF00 Yellow 999999
Dark Gray
CCCCCC is the gray background color, etc.
Insert a Graphic:
<img src="http://www.surveypro.com/pieces/banner.gif">
Insert a Link to a Web Page:
<a href="http://www.surveypro.com">Link Text Here</a>
Insert a Graphic with a Link:
<a href="http://www.surveypro.com">
<img src="http://www.surveypro.com/pieces/banner.gif">
</a>
Insert a Link to a Word Document:
<a href = "http://www.surveypro.com/marketing/CorporteProfile.doc">
Click here to view our corporate profile</a>
Insert a Media Link:
<IMG DYNSRC = "http://www.surveypro.com/client/graphics/EgRing.mpeg"
START="mouseover" Loop=1></a>
We will load the graphics, document or media files onto our servers and
they will be called from that server. The link text may be inserted into
any question (or answer) for your survey.
Turn off the Thank You page :
<META HTTP-EQUIV=refresh content="0; URL=http://www.yourwebsite.com">
|