# How to make a link? The tag of a link:
“href” attribute is responsible for the link address
Code
<a href="http://ucoz.ru/">Create your own site</a>
# How to make a scrolling line?
A scrolling line is added by means of the tags
Example:
Code
<marquee>uCoz Web Service</marquee>
There are also such attributes as
scrolldelay="" – delay
direction="" – direction of move
Code
<marquee scrolldelay="80" direction="left">uCoz Web Service</marquee>
If you want it to stop when pointing with cursor, then add
Code
<marquee scrolldelay="80" direction="left" onmouseover='this.stop()' onmouseout='this.start()' >uCoz Web Service</marquee>
# How to insert an image? Use <img> tag which has size attributes (see above) and an image link attribute
Code
<img src="http://ucoz.ru/image.jpg" width="775" height="328">
# How to make a page for different screen resolutions?
You should specify the width of tables (mostly) not fixed, i.e. not in pixels but in percent (width="100%")
# How to change text color?
There are two ways - either CSS or <font> tag
- by means of CSS
- by means of FONT tag
Code
<font color="#FF0000">Text</font>
# I’ve changed site template (not automatically), but the design of the forum hasn’t changed. How to fix it?
The design of each module is changed separately if the feature “apply to all pages” is not enabled.
# I’ve inserted chat (Tag Board) into the main page, how can I add it to all other pages without inserting the code to each page separately
You can do it with the help of Templates Builder.
# How to make an image instead of “Download”?
You should put <img> tag into the link tag <a></a>
Example
Code
<a href="Link"><img src="http://ucoz.com/image.jpg" width="775" height="328"></a>