How to Use HTML Xanga Layouts
The popular blogging website Xanga can be customized to your heart's content with different layouts, font styles and backgrounds. Colors, images and other embellishments are all completely up to you. Such customization helps you set your site apart, giving it a more personal, unique appearance. This draws immediate attention from your friends and visitors. And all it takes is a little bit of HTML.
Instructions
-
-
1
Learn some of the most important HTML tags. There are many great online resources where you can learn the most important tags in just a weekend. Some of these include <img>, <a>, <h1>, and <h2>. (See the links in Resources.)
-
2
Go to your Xanga editing page. Under the Header menu, you can input your own HTML. You can change the background color, text color and insert links or images.
-
-
3
To change the background color of your page, go to the <body> tag and edit it so it looks like this: <body style="background:color">You can replace the word "color" with common color names, such as white, black or red.
-
4
If you want your background color to be more precise, you can also use this format:rgb(amount of red, amount of green, amount of blue)where you replace "amount of red," "amount of green," and "amount of blue" with numbers between 0 and 255 to indicate how much of each color you want present.
-
5
To insert images in your HTML, use the <img> tag. In a spot where you want to locate an image, type:<img src="location of image">Replace "location of image" with the web address of the image you want to use.
-
1