Im really sorry about posting to many topics in the forums.. I dont mean to spam. Anyways still all i have is a white background? could u plz plz help me by putting in the code id need to use in motd format so all ill have to do is copy and paste cause im a newb with html. Here is what mine looks like now:
<html>
<head>
<title>
<body> background="http://www.mustangmods.com/data/18489/ms2.jpg">
</body>
</head>
</html>
NEWB HERE HELP!
-
- New to forums
- Posts: 7
- https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
- Joined: Thu Oct 06, 2005 3:27 am
The body needs to come after the head.
You don't really need the <html></html> and head/title, as well (it will understand it either way).
Code: Select all
<html>
<head><title>Our server</title></head>
<body background="http://www.mustangmods.com/data/18489/ms2.jpg">
</body>
</html>