Be a Supporter!

HTML n00b question

  • 521 Views
  • 12 Replies
New Topic Respond to this Topic
LAxin1493
LAxin1493
  • Member since: May. 10, 2005
  • Offline.
Forum Stats
Member
Level 05
Blank Slate
HTML n00b question 2005-06-01 16:33:08 Reply

What's html code to make a marquee thing scroll across the screen?

BurstStudio
BurstStudio
  • Member since: Dec. 27, 2002
  • Offline.
Forum Stats
Member
Level 12
Programmer
Response to HTML n00b question 2005-06-01 16:36:16 Reply

<marquee>are you that stupid?</marquee>

Come on. Ever heard of Google?

Pilot-Doofy
Pilot-Doofy
  • Member since: Sep. 13, 2003
  • Offline.
Forum Stats
Member
Level 37
Musician
Response to HTML n00b question 2005-06-01 22:54:08 Reply

I agree, they seem to not know of a single search engine.

Oh my God, first attempt and first link shows us exactly how to do it!
http://www.google.com/search?q...=firefox-a&rls=org.mozilla:en-US:official

AgainstMe
AgainstMe
  • Member since: Feb. 21, 2002
  • Offline.
Forum Stats
Member
Level 15
Blank Slate
Response to HTML n00b question 2005-06-02 01:54:19 Reply

At 6/2/05 01:50 AM, patheticcockroach wrote: The only problem with the marquee tag is that it's not valid HTML or XHTML... However I think all browsers support it.

neither is <center> tags... but all browsers support it and will continue supprting it

Iamrecognized
Iamrecognized
  • Member since: May. 8, 2005
  • Offline.
Forum Stats
Member
Level 15
Blank Slate
Response to HTML n00b question 2005-06-04 08:48:56 Reply

I haven't done any HTML for a while but i thought it was <div align="center">

joeldaking
joeldaking
  • Member since: Jun. 4, 2005
  • Offline.
Forum Stats
Member
Level 03
Blank Slate
Response to HTML n00b question 2005-06-04 08:56:22 Reply

i need to no how to use html i am a noob dont make me go to other web sites and read becuase i jsut do not understand them help me

Kings-Cant-Fall
Kings-Cant-Fall
  • Member since: Dec. 28, 2004
  • Offline.
Forum Stats
Member
Level 08
Blank Slate
Response to HTML n00b question 2005-06-04 10:15:14 Reply

At 6/4/05 08:56 AM, joeldaking wrote: i need to no how to use html i am a noob dont make me go to other web sites and read becuase i jsut do not understand them help me

How do you expect to learn if you are not willing to read? http://www.htmlgoodies.com/primers/html/
There's an exact link to a few beginners tutorials on html. Everything is watered down, and very easy to understand.

JeremysFilms
JeremysFilms
  • Member since: Feb. 18, 2005
  • Offline.
Forum Stats
Member
Level 18
Blank Slate
Response to HTML n00b question 2005-06-05 19:49:31 Reply

Come on, the guy just wants to know the code, isn't it easier to give it to him then making him search on google?

Well anyway, here's the code:

<marquee>TEXT GOES HERE</marquee>

LAxin1493
LAxin1493
  • Member since: May. 10, 2005
  • Offline.
Forum Stats
Member
Level 05
Blank Slate
Response to HTML n00b question 2005-06-05 22:04:16 Reply

At 6/5/05 07:49 PM, jeremysfilms wrote: Come on, the guy just wants to know the code, isn't it easier to give it to him then making him search on google?

Well anyway, here's the code:

<marquee>TEXT GOES HERE</marquee>

Thanks really helped. My frend needed that for his new site, and I don't know anything about html so I just asked here

Cheers,
*~*~LaXin*~*~

Pilot-Doofy
Pilot-Doofy
  • Member since: Sep. 13, 2003
  • Offline.
Forum Stats
Member
Level 37
Musician
Response to HTML n00b question 2005-06-05 22:20:32 Reply

At 6/4/05 08:48 AM, Iamrecognized wrote: I haven't done any HTML for a while but i thought it was <div align="center">

Well, it is similar to transitions over time in PHP as well. This is an easy way to explain it, if you know a little about PHP. For example, in the first release in which this information was available, here is how you would access a user's IP address:
$HTTP_SERVER_VARS['REMOTE_ADDR'];

In a later version it was shortened to:
$_SERVER['REMOTE_ADDR'];

And now, you can use:
$REMOTE_ADDR;

But of course, you can still see its origin. Similar to the case with the <div> tags and the <center> tag. Now, the <div> tags are actually supported with HTML, I do not believe the <center> tag is. However, I'm not an HTML expert, not on the origin and classification of tags anyway.

I would always use <div> tags just for originality and readability purposes.