|
Where can I use HTML in the Surveys?
Valid HTML can be used almost anywhere in the survey. Please make sure all HTML tags are closed properly. You can use HTML as part of:
- The questions or answers.
- The Header and the Footer of the Survey.
- The Finsih Options or in the Thank you page.
MicroPoll support staff cannot and will not help you with HTML related questions. Only use HTML if you have in-depth knowledge of HTML.
Here are a few examples :-
- <font size=1> How useful do you find developer training ? </font>
-- This changes the font size to a smaller font.
- <font color="red"> How useful do you find developer training ? </font>
-- This will apply the Color mentioned in the quotes to the text. You can specify absolute color name as in the above example or the HTML codes for the colors. For example the HEX Code for Red is #FF0000.
- <b> Bold Answer Option </b>
-- This puts the text in BOLD font face.
- <u> Underline Answer Option </u>
-- This underlines the text.
- <BR>
-- This adds a line break.
-
-- This ads a space between words. You can use this code consecutively to add more spaces.
For example ads 1 space will add 2 spaces
will add 3 spaces and so on.
-
<a href="http://www.MicroPoll.com">http://www.MicroPoll.com</a> -- This will post a link to a Website. You can change the URL for the Site to which you want to point the link to.
-
<a href="http://www.MicroPoll.com" target="_blank">http://www.MicroPoll.com</a> -- target="_blank" will make the link open in a new window.
-
<img src="http://www.MicroPoll.com/image.jpg"/> -- Use this HTML to post an Image.
-
<div align="right"> Right aligned Text / Image Here</div>
-- Aligns a text to the "left" , "right" or "center"
For more examples/information on HTML please visit: http://www.w3schools.com
|