
WebSite Help...
-
- New to forums
- Posts: 3
- https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
- Joined: Sat Mar 27, 2004 9:19 am
WebSite Help...
i have no idea how to edit it or disign it can some one tell me how to get access to it? and ne places to get cool scripts 

-
- This is my homepage
- Posts: 314
- Joined: Thu Jan 08, 2004 8:28 pm
websites take a lot of time and effort to create. The best way to do it is to try and learn it yourself, not only will you have full control pver how it turns out, but you will learn a valuable skill. We made a little Q/A thing for you about HTML, unfortunately it was made to explain the MOTD window on counter-strike but the language is the same.
Here is my MOTD, it is pretty basic but it has alot of the same things you might want on your server
http://omikron.nuclearfallout.net/motd.html
here is the CODE for that, edit it as you wish:
have fun 
thats the basic onceover of html, the BASICS. I put together a sample here:aBstracT wrote:Q: How do I add a picture in the motd?
A: First, you'll need to host the picture. You can do so on your free webspace that we offer you. Then, you'll need to add this line in the motd.txt which is located in your control panel. The line you will add in the motd.txt would be this: <img src="name">. In the quotes you'll put the link where the picture is located.
Example:<img src="http://phatty.nuclearfallout.net/Others/omikron.jpg">
You can also edit the width and heighth of the picture.
<img src="http://phatty.nuclearfallout.net/Others/omikron.jpg" width=? heighth=?>
Q: How do I add a background color in the motd?
A:<body bgcolor=?> You'll need to know which color is which #.
here are some basic colors:
Black = #00000
White = #FFFFFF
Yellow = #FFFF66
purple = #FF00FF
green = #669933
Now this is what it would look like if I wanted my background color to be black: <body bgcolor="#00000">
Q: How do I make the text italic, or bold?
A: To make it bold, simply add this infront of the word<b>and this
after it.</b>
Example: Nuclearfallout is the word I want to bold.
<b>NuclearFallout</b>
Now if I want to make it italic, it would look like this:
<i>NuclearFallout</i>
(You can also do it both)
Q: How do I change the size of the text in the motd?
A: Add this line: <font size=?></font>
Also, It's only from 1-7.
Q: How do I change the font color?
A: <font color=?>
You'll need to know the color's #. I have provided some above.
Q: How do I add a link to my clan's website!
A: <a href="URL"> Just put what you want where it says URL.
Q: I want to change the color of the link! how can I do that?
A:<body alink=?> once again, you'll need the color's #.
Q: How can I change the font ?
A: This would be the line to add in the motd:
<face =?>
Example: <face="Times New Roman">
This is a FAQ that you might want to add, it will help renters with their motd's.
Here is my MOTD, it is pretty basic but it has alot of the same things you might want on your server

http://omikron.nuclearfallout.net/motd.html
here is the CODE for that, edit it as you wish:
Code: Select all
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<title>Team Omikron</title>
</head>
<body bgcolor="#000000">
<div align="center">
<p><font color="#ffff00">Team Omikron</font></p>
<p><font color="#aeaeae">www.teamomikron.com</font></p>
<p><font color="#aeaeae">#team.omikron @ irc.GameSurge.net</font></p>
<p><font color="#aeaeae">Hosted by : NuclearFallout<br>
Visit <a href="http://rentals.nuclearfallout.net/rent.php?content=order&referrer=teamomikron">http://rentals.nuclearfallout.net</a> to get your own</font></p>
<p><font color="#aeaeae"><img src="http://omikron.nuclearfallout.net/images/omi.jpg" alt="" height="155" width="575" border="0"></font></p>
</div>
</body>
</html>

you can also look for help at http://www.google.com . just type "HTML help" in the search engine, half a dozen sites will come up that are alot of help. Also, the book 'HTML For Dummies' helped me the most. no joke.
-
- This is my homepage
- Posts: 314
- Joined: Thu Jan 08, 2004 8:28 pm