| Basic Html |
|
To display a text link:
<a href="URL_OF_SITE_HERE">Displayed Text </a>
To display a text link which opens into a new browser window:
Set target="_blank"
<a href="URL_OF_SITE_HERE" target="_blank">Displayed Text </a>
To make a picture a link:
<a href="URL_OF_SITE_HERE"><img src="URL_OF_IMAGE_HERE"></a>
Change font style, add graphics, create links & etc
Making text bold in myspace
To make text appear bold, use <b> bold </b> around the text. For example:
Make <b>this text bold</b>
will look like:
Make this text bold
Making text italic in myspace
To make text appear italic, use <i>italic</i> around the text. For example:
Make <i>this italic text </i> will look like:
Make this italic text
Making text underlined in myspace
To make text appear underlined (without being an actual link), use <u> underline </u> around the text. For example:
Make <u>this text underlined</u> will look like:
Make this text underlined
Creating line breaks in myspace
There are two basic line breaks in HTML. Use <br> to break to the next line or <p> to skip a line. For example:
1<br>2<p>3 will look like:
1 2
3
Changing the size of text in myspace
To change the size of text, use <font size=" 1"> to look bigger, or <font size="-1"> to look smaller. End with </font>. You can also change the number value if you want to. For example:
Make text <font size=" 2">bigger</font> or <font size="-2">smaller</font> will look like:
Make text bigger or smaller
Changing the type of font in myspace
There are a few different fonts you can use, and the most common are:
Times New Roman: (this is the default for all browsers) Arial or Helvetica: use <font face="Arial, helvetica"> and </font>
Verdana: use <font face="Arial"> text </font>
Times new roman: use <font face="times new roman"> and </font>
For example:
Make <font face="times new roman">this font times new roman</font>
will look like:
Make this font times new roman
Changing the font color in myspace
There are many different Web-safe colors that you can use in your template. View our HTML Color Codes Chart. To make text appear in a certain color, use the color codes like this: <font color="#FF0000">. For example:
Make <font color="#FF0000">this font red</font> will look like:
Make this font red
To set default font colors for the entire page, use color codes in the <body> command. For example, if you want:
font = black link = blue 'visited' link = red 'while being clicked' link = pink use: <body text="#000000" link="#FFFF00" vlink="#FF0000" alink="#FF00CC">
|
| Posted: 6/27/2008 at 09:26 | Read 177 times | 3 comments | Leave Comment |
|