sponsors
beginners guide - learn basic html codes
1. Adding a layout to your Myspace profile!
2. Text Editing!
A. View the layout you wish to add to your profile
B. Copy the HTML/CSS code provided
C. Go to www.myspace.com and log into your account
D. Click 'Edit Profile'
E. Paste the already copied code into the 'About Me' section
F. Save changes, and you're done!
B. Copy the HTML/CSS code provided
C. Go to www.myspace.com and log into your account
D. Click 'Edit Profile'
E. Paste the already copied code into the 'About Me' section
F. Save changes, and you're done!
2. Text Editing!
A. Breaking Spaces
To put text or an image on a seperate line, use a line break (<br>). Using a line break will stop the line you are on, and create a new one.
Example: Hello! <br> Welcome to my Myspace profile!
Will look like:
Hello!
Welcome to my Myspace profile!
B. Making BOLD text
If you want to make certain text on your page bold, use the bold code (<b>TEXT</b>)
Example: <b> Hello! Welcome to my Myspace profile! </b>
Will look like: Hello! Welcome to my Myspace profile!
C. Changing the size of your font
If you want to make your font bigger or smaller, you need to use the size attribute <font size="#">TEXT GOES HERE </font>
D. Changing the font
If you want to change your font you will use the face attribute (<font face="FONTFACE">TEXT HERE!</font>)
Example: <font face="Tahoma">Hello! Welcome to my Myspace profile!</font>
Will look like: Hello! Welcome to my Myspace profile!
A few more examples!
<font face="Arial">Hello!</font> = Hello!
<font face="Verdana">Hello!</font> = Hello!
<font face="Georgia">Hello!</font> = Hello!
<font face="Courier New">Hello!</font> = Hello!
<font face="Times New Roman">Hello!</font> = Hello!
E. Changing the color of your font!
If you want to change the color of your font, you need to use the color attribute (<font color="COLOR">TEXT HERE</font>
Example <font color="blue">Hello! Welcome to my Myspace profile!</font>
Will look like: Hello! Welcome to my Myspace profile!
A few more examples!
<font color="red">Hello!</font> = Hello!
<font color="green">Hello!</font> = Hello!
<font color="yellow">Hello!</font> = Hello!
<font color="orange">Hello!</font> = Hello!
<font color="pink">Hello!</font> = Hello!
F. Aligning your text
If you want to align your text, you will need to use the div align attribute (<div align="XXXXX">TEXT HERE</div>)
The following code will put your text in the center of the page: <div align="center">TEXT HERE</div>
The following code will put your text on the left of the page: <div align="left">TEXT HERE</div>
The following code will put your text on the right of the page: <div align="right">TEXT HERE</div>
G. Make your text move!
If you want to make your text move from side to side, you need to use the marquee code. (<marquee> Text here </marquee>)
RIGHT TO LEFT:
<marquee direction="left"> Text here </marquee>
LEFT TO RIGHT:
<marquee direction="right"> Text here </marquee>
BACK AND FORTH:
<marquee behavior="alternate"> Text here </marquee>
To put text or an image on a seperate line, use a line break (<br>). Using a line break will stop the line you are on, and create a new one.
Example: Hello! <br> Welcome to my Myspace profile!
Will look like:
Hello!
Welcome to my Myspace profile!
B. Making BOLD text
If you want to make certain text on your page bold, use the bold code (<b>TEXT</b>)
Example: <b> Hello! Welcome to my Myspace profile! </b>
Will look like: Hello! Welcome to my Myspace profile!
C. Changing the size of your font
If you want to make your font bigger or smaller, you need to use the size attribute <font size="#">TEXT GOES HERE </font>
D. Changing the font
If you want to change your font you will use the face attribute (<font face="FONTFACE">TEXT HERE!</font>)
Example: <font face="Tahoma">Hello! Welcome to my Myspace profile!</font>
Will look like: Hello! Welcome to my Myspace profile!
A few more examples!
<font face="Arial">Hello!</font> = Hello!
<font face="Verdana">Hello!</font> = Hello!
<font face="Georgia">Hello!</font> = Hello!
<font face="Courier New">Hello!</font> = Hello!
<font face="Times New Roman">Hello!</font> = Hello!
E. Changing the color of your font!
If you want to change the color of your font, you need to use the color attribute (<font color="COLOR">TEXT HERE</font>
Example <font color="blue">Hello! Welcome to my Myspace profile!</font>
Will look like: Hello! Welcome to my Myspace profile!
A few more examples!
<font color="red">Hello!</font> = Hello!
<font color="green">Hello!</font> = Hello!
<font color="yellow">Hello!</font> = Hello!
<font color="orange">Hello!</font> = Hello!
<font color="pink">Hello!</font> = Hello!
F. Aligning your text
If you want to align your text, you will need to use the div align attribute (<div align="XXXXX">TEXT HERE</div>)
The following code will put your text in the center of the page: <div align="center">TEXT HERE</div>
The following code will put your text on the left of the page: <div align="left">TEXT HERE</div>
The following code will put your text on the right of the page: <div align="right">TEXT HERE</div>
G. Make your text move!
If you want to make your text move from side to side, you need to use the marquee code. (<marquee> Text here </marquee>)
RIGHT TO LEFT:
<marquee direction="left"> Text here </marquee>
LEFT TO RIGHT:
<marquee direction="right"> Text here </marquee>
BACK AND FORTH:
<marquee behavior="alternate"> Text here </marquee>
