Jump to content
MakeWebGames

first site


Bubbl3z

Recommended Posts

can't go further thats all i no how to do :-)

any one thae can help plz tell me

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Entering</title>
</head>

<body>
<body text="#00FFFF" bgcolor="#000000" link="#FFFF00" vlink="#FF0000"
background="http://stereo.gsfc.nasa.gov/img/spaceweather/preview/tricompSW.jpg">
<h1>Hello World</h1>


Walks out of ship seeing stange creatures and sonthing called the internet.</p>


For more info click [url="http://www.w3.org"]Here[/url]

</body>
</html>
Link to comment
Share on other sites

Re: first site

 

can't go further thats all i no how to do :-)

any one thae can help plz tell me

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Entering</title>
</head>

<body>
<body text="#00FFFF" bgcolor="#000000" link="#FFFF00" vlink="#FF0000"
background="http://stereo.gsfc.nasa.gov/img/spaceweather/preview/tricompSW.jpg">
<h1>Hello World</h1>


Walks out of ship seeing stange creatures and sonthing called the internet.</p>


For more info click [url="http://www.w3.org"]Here[/url]

</body>
</html>

 

So were did you copy that from? lol

Link to comment
Share on other sites

Re: first site

take this

text="#00FFFF" bgcolor="#000000" link="#FFFF00" vlink="#FF0000"

background="http://stereo.gsfc.nasa.gov/img/spaceweather/preview/tricompSW.jpg"

out of the body opening tag because it will not pass xHTML validation. You will then need to go to your head section and add a style tag..

<style type="text/CSS">

body {

color:#0ff;

background:#000 url(http://stereo.gsfc.nasa.gov/img/spacewe ... compSW.jpg);

}

a{color:#ff0;}a:visited,a:hover{color:#f00;}

</style>

That should produce something like what you already had. The rule is that if you want to do any formatting do it in CSS, html is useless :)

p.s you only need 1 opening body tag

Link to comment
Share on other sites

  • 5 months later...

or for different colored text add:

<font="#000000">Your text</font>

Different Size headers of text =

<h1>Your text</h1>

<h2>Your text</h2>

<h3>Your text</h3>

<h4>Your text</h4>

<h5>Your text</h5>

BOLD lettering

Italic lettering

Bold Italic lettering

[align=center]

<center>Centered Text or Images</center>[/align]

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...