Installing scripts on my page...

hm.... sorry for asking a simple question, but how can i make an HTML page with the root directory of napalmdeath.be?

For example, I want napalmdeath.be with a blank page. I want to add a HTML page I wrote and put it there to welcome the user, then put a picture there to direct them to my files.

Any help is appreciated :)
 
SSlaytanic said:
hm.... sorry for asking a simple question, but how can i make an HTML page with the root directory of napalmdeath.be?

For example, I want napalmdeath.be with a blank page. I want to add a HTML page I wrote and put it there to welcome the user, then put a picture there to direct them to my files.

Any help is appreciated :)

This is rather basic HTML, so I'd suggest you begin by skimming through a HTML course. It'll make things much clearer. :)
W3schools has a decent one.

A good idea is to create the page structure you want locally first, and only upload it when it's working. (The change-save-test cycle is faster when working with local files.)
 
To make a real page show up when you hit napalmdeath.be, you need to have an index.html page (there are other possibilities, but since you're new to this I don't want to confuse you).

Anyway, that page was made with HTML, a small amount of Javascript, and some CSS. Nothing fancy.
 
ok, im making my welcome page, but i can't get the blue border out of the main picture. the site is here. This is what I have:

<HTML>
<HEAD>
<title>NAPALMDEATH.BE</title>
</HEAD>
<BODY BGCOLOR="#000000">
<P ALIGN="CENTER"><IMG SRC="nd97.jpg" ALT="napalm"></P>
<P ALIGN="CENTER"><A HREF="http://www.napalmdeath.be/napalm"><IMG SRC="fear.jpg" ALT="death" BORDER="0"></A></P>
<P ALIGN="CENTER"><FONT FACE="Arial" SIZE="2"><font color="#444444"><B>^ Click Above ^</B></font></FONT></P>
</BODY>
</HTML>

I tried every variation, etc, and i still can't find it out.
 
Code:
<html>
<head>
<title>NAPALMDEATH.BE</title>
</head>
<body bgcolor="#000000">
<p align="center"><img src="nd97.jpg"></p>
<p align="center"><a href="http://www.napalmdeath.be/napalm"><img src="fear.jpg" border="0" ></a></p>
<p align="center"><font face="Arial" size="2"><font color="#444444"><b>^ Click Above ^</b></font></font></p>
</body>
</html>

Should work for the border thing. I'd suggest using a separate CSS file though, so you don't have a ton of inline style settings.

Also - the index.html file on the site does not match the code you just posted. Perhaps that's why the border thing wasn't working.
 
Back
Top