Mystic Software Forums
Miscellaneous => Archives => General Discussion => Topic started by: Zeros' on February 21, 2004, 12:38:48 PM
-
ok now i just need to know how to add content and what editors it can use (i know PhP and HTML work) but what other languages are there? thanks.
-
you should use the html kit, it can give you an example of what the page looks like while you edit it, and its easy to use and has an atomatic method finder... heres a link:
HTML Kit (http://http://download.com.com/3000-2048-4687625.html?tag=lst-0-7)
-
now all i need is my forum and ill be in serious business!
-
and well...if i ever get this HTML beter..or is there an easier language...
-
If you need a good tutorial go to www.davesite.com for various tutorials, including for html and css.
-
I dunno. I'm not to good at this sort of thing. html is not 4 me....YET! It will be soon! I think....
-
im looking at that one...but im getting confused about how to set up backgrounds...basically how to put images on your site and upload html pages...
EDIT: and how to add directories (i.e. add different pages and places to store graphics and downloadables)
-
It really is very simple, there is a link in the relevant section about backgrounds with a command list.
-
Can't wait till I can get my site all good!
-
me either...by march ill have my site all done...maybe,,
-
Well only time will tell....
-
yeah...but my main question is about how to add webpages...not really files becasue i know how to add them i believe...i think it might be something like this...
[CODE]
<html>
<head><title>Site!!!</title>
<meta name="description" content="yay!">
<meta name="keywords" content="yeah!">
<meta http-equiv=REFRESH CONTENT="5; URL=http://www.yeah!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!.com">
</head>
<body>
This page Copyright © of yeah!.
</body>
</html>
-
Cool. However the only I understand about that is copy& I know that makes the copyright symbol. I don't know to much about html. I know more about RPGCode then html. But who here dosen't?
-
Dude, make your pages in frontpage and upload them as files. And make sure you make links in frontpage.
-
im...getting...the...hang...of...it...progress (http://http://zerosoft.mysticsoftware.net)...here...
-
here, for your index page, enter this code:
<html>
<head>
<title>Page Title Here</title>
</head>
<body background="imageurlhere" bgcolor=#000000 text=#ffffff>
<p>Hi, I'm Zeros. I don't know how to make webpages. The totally awesome Mark of the Dragon is being kind enough to help me out.</p>
<br>
<p><font color=#cc0000>Yes, Zeros, I have come to help you. This is a <a href="link.html">Link</a>. Use it well. Study the html code to figure it out.<br>
Images can be input like this:<br>
<br>
<img src="image.jpg">
<br>
<p>Wasn't that easy?</p></font>
</body>
</html>
This is a good way to start you out. And a banner is just an image at the very top of your page. Just figure it out from there. Make sure it's centered!
-
haha Laughing good one ken
-
What I do not understand is, that from taking that whole tutorial that I did, you did not work it out when I did...
-
i have some...problems with my memory...i usually have to review things or write it down or i WILL forget it..even RPG code...so thats why i need all this help...sorry about this guys...
-
OK.
-
BUT...the good thing is everythings coming together gradually B)
-
Good.
-
now i run into another problem...when i try to add a frame, it loads 2 frames (see my MS webpage) and ive been checking the tutoriuals on frames and do everything it says, how do i fix it so it loads 1 small side frame and the big main page? heres the code
\
<html>
<head>
<title>Zerosoft Productions 2004-2005</title>
</head>
<frameset cols="15%,85%">
<frame src="menubar.htm" name="sidemenu" noresize>
<frame src="index.htm" name="mainwindow" scrolling="yes">
</frameset>
<body background="imageurlhere" bgcolor=#000000 text=#ffffff>
<br>
<h1 align=center><img src="http://zerosoft.mysticsoftware.net/images/banner1.gif"></h1>
</br>
<p>2004.22.02</p>
<p>Hey everyone, this is just for right know...im just trying to get the basic structure down.</p>
<br>
<p><font color=#cc0000>If you want to help me, visit my MS board <a href="http://ibforums.mysticsoftware.net/index.php?showforum=26">here!</a>
</body>
</html>
-
now i run into another problem...when i try to add a frame, it loads 2 frames (see my MS webpage) and ive been checking the tutoriuals on frames and do everything it says, how do i fix it so it loads 1 small side frame and the big main page? heres the code
\
<html>
<head>
<title>Zerosoft Productions 2004-2005</title>
</head>
<frameset cols="15%,85%">
<frame src="menubar.htm" name="sidemenu" noresize>
<frame src="index.htm" name="mainwindow" scrolling="yes">
</frameset>
<body background="imageurlhere" bgcolor=#000000 text=#ffffff>
<br>
<h1 align=center><img src="http://zerosoft.mysticsoftware.net/images/banner1.gif"></h1>
</br>
<p>2004.22.02</p>
<p>Hey everyone, this is just for right know...im just trying to get the basic structure down.</p>
<br>
<p><font color=#cc0000>If you want to help me, visit my MS board <a href="http://ibforums.mysticsoftware.net/index.php?showforum=26">here!</a>
</body>
</html>
*clutches face in frustration, sighs*
OK, what you do is:
In index.htm:
<html>
<head>
<title>Zerosoft Productions 2004-2005</title>
</head>
<body>
<frameset cols="15%,85%">
<frame src="menubar.htm" name="sidemenu" noresize>
<frame src="main.htm" name="mainwindow" scrolling="yes">
</frameset>
</body>
In main.htm:
<html>
<head></head>
<body>
<body background="imageurlhere"><font color="FFFFFF">
<img src="http://zerosoft.mysticsoftware.net/images/banner1.gif">
<br><p>2004.22.02</p>
<br><p>Hey everyone, this is just for right know...im just trying to get the basic structure down.</p>
<br>
<p><font color="CC0000">If you want to help me, visit my MS board <a href="http://ibforums.mysticsoftware.net/index.php?showforum=26">here!</a>
</body>
</html>
In menubar.htm:
<html>
<head></head>
<body>
<body background="imageurlhere"><font color="FFFFFF>
<h1 align="center">MENU</h1>
<br><p><a href="whatever.htm target="mainwindow">whatever</a>
</body>
<html>
I hope this helps.
-
thanks alot haraldur. i figured out the problem...it was SO obvious...but thanks alot. it was right here
<frame src="main.htm" name="mainwindow" scrolling="yes">
my main page was index.htm but it was named as main.htm...thanks dude
-
No problem.
-
Yee. People helping other people. That's good. I hate it when people say negative things to each other. I've herd people like that to much. It's bad.
Well I think I'm going to put up a site soon. My Mystic Software site is to coplcated and I'm going to wait awile before I get started on it. I wish I was smarter so I chould have a Mysticsoftware site but oh well....
-
Hehe. It is a tight-knit community here.
-
Yup..It is. I don't know why alot of people are hateing other people for no reason or some stupid reason. I don't really hate anybody. And not alot of people hate me Very Happy !
-
Does anyone hate you?
-
Well some dude, because he likes some girl I'm going out with. And I pretty sure some other people may hate me but I don't know...They could be anyone really....Maybe it's YOU!*points to nobody in general*
-
Hehehe.
-
I know. I'm funny! Laughing
-
Yes, you are, hehehe.
-
I like being funny. I wouldn't be in the pisition I would be in now if I wasn't. I would be in some boreing pistion sitting on my chair I guess..LOL
-
So you are saying you usually do not sit down when at the computer?
-
No I'm not saying that. I'm saying that I-....what the hell AM I saying?
-
Search me.
-
Well anyway. Some people think I'm just plain stupid. Not funny. But that's only a few people in my class at school. But everyone else think I'm funny or cute. Very Happy
-
OK. Well if that extends to girls then you have got the jackpot.
-
Hmm, I'm not considered funny - rather, insane. I'm going to school with a kitchen knife for defense, I'm trying to jump out of window after lesson starts, one day I've brang some domestos mixed with mineral water for a school party, when I got somehow drunk at my birthday party I wanted to run away from home and go to "temple of eternity", when someone tried to astop me I accused him for being the "false prophet", "heretic" or "infidel", and, as my friend says, I kept refering to myself as "we". And said something about "mother gravity being a bitch".
-
[SARCASM]That is perfectly normal Cesque.[/SARCASM]