Need Help With Html
#2
Posted 22 November 2004 - 01:35 PM
i can help you when i get home (at school in polytech now)
"See, I think drugs have done some *good* things for us, I really do. And if you don’t believe drugs have done good things for us, do me a Favor: go home tonight and take all your albums, all your tapes, and all your cd’s and burn em’. 'Cause you know what? The musicians who’ve made all that great music that’s enhanced your lives throughout the years...
Rrrrrrrrrrrrreal {expletive ninja'd by Cspace} high on drugs."
-- Bill Hicks
"Today a young man on acid realized that all matter is merely energy condensed to a slow vibration. That we are all one consciousness experiencing itself subjectively. There is no such thing as death, life is only a dream, and we are the imagination of ourselves. Here's Tom with the weather."
-- Bill Hicks
"It's not a war on drugs, it's a war on personal freedom. Keep that in mind at all times."
-- Bill Hicks
http://ctprofiles.net/2122894
Rrrrrrrrrrrrreal {expletive ninja'd by Cspace} high on drugs."
-- Bill Hicks
"Today a young man on acid realized that all matter is merely energy condensed to a slow vibration. That we are all one consciousness experiencing itself subjectively. There is no such thing as death, life is only a dream, and we are the imagination of ourselves. Here's Tom with the weather."
-- Bill Hicks
"It's not a war on drugs, it's a war on personal freedom. Keep that in mind at all times."
-- Bill Hicks
http://ctprofiles.net/2122894
#3
Posted 22 November 2004 - 06:13 PM
May be able to
just tell me what the prob is.
Fremennik name: Rakrak
Doesnt everyone agree that i look better as a... Combat Lvl 78?! omfg, It's GROWING!!!
"You try and feed the rock, Your rock doesn't seem hungry."
"You stroke your rock, Your rock seems much happier."
"Who's a good rock then? Yes, you are...You're such a good rock...Ooga Booga Googa."
Doesnt everyone agree that i look better as a... Combat Lvl 78?! omfg, It's GROWING!!!
"You try and feed the rock, Your rock doesn't seem hungry."
"You stroke your rock, Your rock seems much happier."
"Who's a good rock then? Yes, you are...You're such a good rock...Ooga Booga Googa."
#7
Posted 22 November 2004 - 07:25 PM
...and it did not help?
becuase that is as simple as it gets.
um...I guess maybe I could try to explain some stuff.
Html is about tags, abreviations, and calling up stuff(that is to say, that you tell the page to display something that is stored somewhere).
youll see in any editor
<BODY>
<HTML>
thats at the start of a page.
and...
</BODY>
</HTML>
you will notice that they look similar, well the set at the top of ur page is an opening tag, the set at the bottom(the one with a "/" after the "<") is a closeing tag.
to do anything in html you will need to open and close tags as you go.
the first tag you will prolly need to open is one for your back ground. to do this, once inside your shell(the editor for your page that you type the html into). put , after the opening "<HTML>" tag "<bg color="black">. thats simple eh?
okay you could also(instead of "bg color") put in that space<bg img="http://www.yourimgaddresshere.com">...this would tell the page that you want to summon an image as your background from the provided address. however the address will probably be an extention of your page that you created to host said image(wich you will have uploaded).
I said you have to close tags earlier well to do that here I guess you would go "</bg>" however I have never found it neccesary in this case.
next you will want text(writing). you must specify: size of writing, color of writing, font of writing, and position of writing, on the page.
note:size, color, and font, dont need to be in any specific order, as long as they proceed what you type, have a closing tag and come after, your positioning tag.
lets start with the first position of text. to open a tag for this write "<p align="center"> . now you do not have to write "center" exactly. you may also put (in lue of), "left", or "right".
now comes your, text size, "<font size="3">"(again that number is changeable)
now your font type "< font type="balthazar">"
now comes you color<font color="white"
now you can of course specify a diferent font or color. but these are just examples.
four other tags you should know are "<br>"(for paragraphing), "<u>"(for underlining text), "<I>"(for italic---slanted text---), and "<B>" for bold.
note: the quotation marks out side the brackets "< >" you will not be typing in. it is only the qoutations within the brackets that you will have to type(if you do not it will not show, or not show properly...the same gos for if you do not close a tag).
heres an example of what it might look like all together:
<BODY>
<HTML>
<BG COLOR="black">
<p align="center">
<FONT size="5">
<FONT COLOR="cyan">
<FONT TYPE="New Roman Times">
<B>
<U> My Home Page</B></U><BR>
(you will notice here that i put I put in some closing tags, that is becuase I had put in bold and underlined the page title, and no longer need that since the title is concluded...however since I still need the color and size and what not ill leave it open for now)
this is my first website, what do you think?
</p></FONT>
</HTML>
</BODY>
some html editors work diferently and require you to put in alot more or less or use some thing like the word "text" rather then "font" but that is basics for you and armed with this you should be able to make a new (very primitive page). now for more tags and what not that site provided a link to earlier can furnish you with that.
I just hope this doesnt actualy write into my post lol, and not show as I intended it to.
now my html is pretty sloppy cuase' I know what i can get away with not typing in(and becuase I havnt done any actual programing in a while...just small corrections on existing pages when they are brought to my attention) lol. but for corrected vertions visit the link I had posted earlier.
becuase that is as simple as it gets.
um...I guess maybe I could try to explain some stuff.
Html is about tags, abreviations, and calling up stuff(that is to say, that you tell the page to display something that is stored somewhere).
youll see in any editor
<BODY>
<HTML>
thats at the start of a page.
and...
</BODY>
</HTML>
you will notice that they look similar, well the set at the top of ur page is an opening tag, the set at the bottom(the one with a "/" after the "<") is a closeing tag.
to do anything in html you will need to open and close tags as you go.
the first tag you will prolly need to open is one for your back ground. to do this, once inside your shell(the editor for your page that you type the html into). put , after the opening "<HTML>" tag "<bg color="black">. thats simple eh?
okay you could also(instead of "bg color") put in that space<bg img="http://www.yourimgaddresshere.com">...this would tell the page that you want to summon an image as your background from the provided address. however the address will probably be an extention of your page that you created to host said image(wich you will have uploaded).
I said you have to close tags earlier well to do that here I guess you would go "</bg>" however I have never found it neccesary in this case.
next you will want text(writing). you must specify: size of writing, color of writing, font of writing, and position of writing, on the page.
note:size, color, and font, dont need to be in any specific order, as long as they proceed what you type, have a closing tag and come after, your positioning tag.
lets start with the first position of text. to open a tag for this write "<p align="center"> . now you do not have to write "center" exactly. you may also put (in lue of), "left", or "right".
now comes your, text size, "<font size="3">"(again that number is changeable)
now your font type "< font type="balthazar">"
now comes you color<font color="white"
now you can of course specify a diferent font or color. but these are just examples.
four other tags you should know are "<br>"(for paragraphing), "<u>"(for underlining text), "<I>"(for italic---slanted text---), and "<B>" for bold.
note: the quotation marks out side the brackets "< >" you will not be typing in. it is only the qoutations within the brackets that you will have to type(if you do not it will not show, or not show properly...the same gos for if you do not close a tag).
heres an example of what it might look like all together:
<BODY>
<HTML>
<BG COLOR="black">
<p align="center">
<FONT size="5">
<FONT COLOR="cyan">
<FONT TYPE="New Roman Times">
<B>
<U> My Home Page</B></U><BR>
(you will notice here that i put I put in some closing tags, that is becuase I had put in bold and underlined the page title, and no longer need that since the title is concluded...however since I still need the color and size and what not ill leave it open for now)
this is my first website, what do you think?
</p></FONT>
</HTML>
</BODY>
some html editors work diferently and require you to put in alot more or less or use some thing like the word "text" rather then "font" but that is basics for you and armed with this you should be able to make a new (very primitive page). now for more tags and what not that site provided a link to earlier can furnish you with that.
I just hope this doesnt actualy write into my post lol, and not show as I intended it to.
now my html is pretty sloppy cuase' I know what i can get away with not typing in(and becuase I havnt done any actual programing in a while...just small corrections on existing pages when they are brought to my attention) lol. but for corrected vertions visit the link I had posted earlier.

------------------------------------------------------------------------------------
#10
Posted 22 November 2004 - 09:14 PM
#11
Posted 22 November 2004 - 10:15 PM
like I said I havnt writen anything in a long time so there are prolly a bunch of errors or some would call it the lazy way lol. but really, the link I provided I believe(come to think of it havnt been to that site in a long time), would explain the same sort of stuff. basicaly html is simple. the words people dont understand, and symbols they dont get are just abreviations.
heck you can even put in downloadable java aplets(like lake aplets....mirrors an image as if mirriored by a shimering lake), into html scripts, add in custom logos...html is pretty custimisable and you can get away with alot that I hear some of the more complex languages(I only know bits and peices of other stuff), dont let you get away with. heck I found out along time ago that I can just cut and paste off junk i already made, change a few words and have a whole new page.
Html is like working with clay(bare with me on this analogy lol). you can work it many ways and produce the same resualts. and though yours may not be as good as the person's next to you its okay, becuase the clay is plyable. you can have others alter it for you or make little suggestions. and when your done with it just squish it up and make something else.
oh btw, any one know of any good page transition scripts? I have a few but there old to me now and I want to work in some fresh stuff, in the way of effects...and also here is one of my older pages. look how neato! and that is before I knew how to do any thing and was just dinking around with html and figuring it out(I am still a dinker but ive gotten alot better at it lol)....copy rite on word "Dinker"...there its mine now
heck you can even put in downloadable java aplets(like lake aplets....mirrors an image as if mirriored by a shimering lake), into html scripts, add in custom logos...html is pretty custimisable and you can get away with alot that I hear some of the more complex languages(I only know bits and peices of other stuff), dont let you get away with. heck I found out along time ago that I can just cut and paste off junk i already made, change a few words and have a whole new page.
Html is like working with clay(bare with me on this analogy lol). you can work it many ways and produce the same resualts. and though yours may not be as good as the person's next to you its okay, becuase the clay is plyable. you can have others alter it for you or make little suggestions. and when your done with it just squish it up and make something else.
oh btw, any one know of any good page transition scripts? I have a few but there old to me now and I want to work in some fresh stuff, in the way of effects...and also here is one of my older pages. look how neato! and that is before I knew how to do any thing and was just dinking around with html and figuring it out(I am still a dinker but ive gotten alot better at it lol)....copy rite on word "Dinker"...there its mine now

------------------------------------------------------------------------------------
#12
Posted 23 November 2004 - 12:04 AM
u dont actualy have to set the font size cause it will automaticly go to the browsers default font.
"See, I think drugs have done some *good* things for us, I really do. And if you don’t believe drugs have done good things for us, do me a Favor: go home tonight and take all your albums, all your tapes, and all your cd’s and burn em’. 'Cause you know what? The musicians who’ve made all that great music that’s enhanced your lives throughout the years...
Rrrrrrrrrrrrreal {expletive ninja'd by Cspace} high on drugs."
-- Bill Hicks
"Today a young man on acid realized that all matter is merely energy condensed to a slow vibration. That we are all one consciousness experiencing itself subjectively. There is no such thing as death, life is only a dream, and we are the imagination of ourselves. Here's Tom with the weather."
-- Bill Hicks
"It's not a war on drugs, it's a war on personal freedom. Keep that in mind at all times."
-- Bill Hicks
http://ctprofiles.net/2122894
Rrrrrrrrrrrrreal {expletive ninja'd by Cspace} high on drugs."
-- Bill Hicks
"Today a young man on acid realized that all matter is merely energy condensed to a slow vibration. That we are all one consciousness experiencing itself subjectively. There is no such thing as death, life is only a dream, and we are the imagination of ourselves. Here's Tom with the weather."
-- Bill Hicks
"It's not a war on drugs, it's a war on personal freedom. Keep that in mind at all times."
-- Bill Hicks
http://ctprofiles.net/2122894
Sign In
Register
Help



MultiQuote










