CurvedSpace Forums: Need Help With Html - CurvedSpace Forums

Jump to content

  • (2 Pages)
  • +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

Need Help With Html

#1 {lang:macro__useroffline}   Nate {lang:icon}

  • Senior Member
  • Icon
  • {lang:view_blog}
  • Group: Member
  • Posts: 2,573
  • Joined: 15-October 04

Posted 22 November 2004 - 01:06 PM

Anyone want to help me with html?
0

#2 {lang:macro__useroffline}   SlainThrax- {lang:icon}

  • Pro is spelled Prou
  • Icon
  • Group: Moderator
  • Posts: 2,854
  • Joined: 04-December 02

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
0

#3 {lang:macro__useroffline}   Serenarocks {lang:icon}

  • ^Prof.'s Favorite Passtime^
  • Icon
  • Group: New Member
  • Posts: 1,117
  • Joined: 13-June 03

Posted 22 November 2004 - 06:13 PM

May be able to bluetongue.gif 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."
0

#4 {lang:macro__useroffline}   Nate {lang:icon}

  • Senior Member
  • Icon
  • {lang:view_blog}
  • Group: Member
  • Posts: 2,573
  • Joined: 15-October 04

Posted 22 November 2004 - 06:14 PM

the problem is i dont know html to well..
0

#5 {lang:macro__useroffline}   Xemem {lang:icon}

  • Runescape old timer...Been on rs, since rs has been.
  • Icon
  • Group: Moderator
  • Posts: 940
  • Joined: 23-August 02

Posted 22 November 2004 - 06:14 PM

go to here .
learn easy and for free. thumb.gif
Posted Image

------------------------------------------------------------------------------------
0

#6 {lang:macro__useroffline}   Nate {lang:icon}

  • Senior Member
  • Icon
  • {lang:view_blog}
  • Group: Member
  • Posts: 2,573
  • Joined: 15-October 04

Posted 22 November 2004 - 06:15 PM

i already read all the html things there
0

#7 {lang:macro__useroffline}   Xemem {lang:icon}

  • Runescape old timer...Been on rs, since rs has been.
  • Icon
  • Group: Moderator
  • Posts: 940
  • Joined: 23-August 02

Posted 22 November 2004 - 07:25 PM

...and it did not help? eek7.gif
becuase that is as simple as it gets. Flush.gif

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.
Posted Image

------------------------------------------------------------------------------------
0

#8 {lang:macro__useroffline}   Bodom {lang:icon}

  • Echliurn
  • Icon
  • Group: Member
  • Posts: 6,746
  • Joined: 26-April 03

Posted 22 November 2004 - 07:41 PM

I understand....

0

#9 {lang:macro__useroffline}   ur nitmare {lang:icon}

  • the mighty PKing God...
  • Icon
  • Group: New Member
  • Posts: 414
  • Joined: 06-July 04

Posted 22 November 2004 - 09:10 PM

eek7.gif oooooook i read over and now i feel like the smartest person ever sicka.gif
[i2eal 3vil] [82/85 range]
user posted image

user posted image
click on the pic for a pure clan site
join here if u have a pure! pure clan 4ever
0

#10 {lang:macro__useroffline}   Kimojuno {lang:icon}

  • W00T! :D
  • Icon
  • {lang:view_blog}
  • {lang:view_gallery}
  • Group: Global Moderator
  • Posts: 4,536
  • Joined: 09-May 04

Posted 22 November 2004 - 09:14 PM

There is always this site: http://www.daveshtmlsite.com/ TheSmile.gif

{lang:macro__view_post}Xmadole, on 09 August 2009 - 09:28 AM, said:

i wish i actually read the first post of threads.


Posted Image
0

#11 {lang:macro__useroffline}   Xemem {lang:icon}

  • Runescape old timer...Been on rs, since rs has been.
  • Icon
  • Group: Moderator
  • Posts: 940
  • Joined: 23-August 02

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 bluetongue.gif
Posted Image

------------------------------------------------------------------------------------
0

#12 {lang:macro__useroffline}   SlainThrax- {lang:icon}

  • Pro is spelled Prou
  • Icon
  • Group: Moderator
  • Posts: 2,854
  • Joined: 04-December 02

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
0

#13 {lang:macro__useroffline}   Raktor {lang:icon}

  • Official SeeD Alcoholic
  • Icon
  • Group: Member
  • Posts: 4,013
  • Joined: 30-August 03

Posted 23 November 2004 - 05:31 AM

*Coughcoughcoughtechdifficultiescoughcoughcough*

I can help, but reading tutorials over the internet is much better, to start out at least.

*Coughcoughcoughtechdifficultiescoughcoughcough*
0

#14 {lang:macro__useroffline}   Phieta {lang:icon}

  • Not impressed, darling.
  • Icon
  • {lang:view_gallery}
  • Group: Super Moderator
  • Posts: 6,877
  • Joined: 14-January 03

Posted 23 November 2004 - 05:43 AM

www.w3schools.com

They have lessons on "the basics," as well as insanely detailed references for more advanced users. HTML, XHTML, CSS, Javascript, etc. Go look.
Those who will remember, will speak fondly of the warm morning breeze.
0

#15 {lang:macro__useroffline}   Raktor {lang:icon}

  • Official SeeD Alcoholic
  • Icon
  • Group: Member
  • Posts: 4,013
  • Joined: 30-August 03

Posted 23 November 2004 - 05:51 AM

Having a problem with your computer? Can't get a program to run correctly? Maybe you want to make a website and don't know where to get started. This is where to post computer-related questions.

*Starts coughing loudly*
0

  • (2 Pages)
  • +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

10 User(s) are reading this topic
0 members, 10 guests, 0 anonymous users