I have been paying for a website that I really haven't utilized much and am wondering if anyone knows of any free or close to free web templates that are currency/coin collecting based? I would like to redo my personal website to display my notes and coins but from the little bit of looking I haven't really been able to locate any web templates that I could use. Any help is greatly appreciated. Thanks.....Smaugy.
It's not hard to learn how to do html in notepad. Do a google search on HTML basics and you should be on your way. After you learn a few basics, go to a site with a layout you like and click on page, then view source or view source code. Good code has comments that break up the code to tell you what code goes for what part. Copy, paste and refine/adjust. Yahoo geocities hosts for free, but puts ads on your page. Good luck!
Hope this works, "<html> <head> <title>This is the text that will appear at the very top left of your screen</title> </head> <body bgcolor="blue"> <p> This is where you will put text and graphics. If you want to start a new line type<br> <hr><!--this puts a Horizontal line across page> <a href="url">Text to be displayed</a> Adds a link ot another page, just make sure you do a link back to main page!<br> another example <a href="http://www.freepowerboards.com/timelesscoins/ucp.php mode=login"> Timeless coins!</a> <br> </p> <p> the p inside l and r angles starts a new paragraph, but you have 2 end it with /p after.Most tags need /to end them <h1>header size 1</h1> <h4 align=center>header size 4 alignment can be l, r or center</h4> headings go from 1 to 6<br> </p> <p> In HTML, images are defined with the <img> tag. <br> The <img> tag is empty, which means that it contains attributes only and it has no closing tag. <br> To display an image on a page, you need to use the src attribute. Src stands for "source". The value of the src attribute is the URL of the image you want to display on your page. The syntax of defining an image: <img src="url where your image is stored, likely (http://geocities.com/youraccount/yourimage.jpg or gif or whatever your image type is) if you use that free host"> </p> </body> </html>" You have to take out qoutes at begining and end first. When you save it to your desktop, do a save as html. After adjusting the txt file, save it, then open in IE the page you have just saved. Sould notice the changes. Hope this helps!