Welcome to Dream.In.Code
Become an Expert!

Join 149,581 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 1,751 people online right now. Registration is fast and FREE... Join Now!




my first html website

 
Reply to this topicStart new topic

my first html website, can u tell me how to publicitise it on thw web???

MR. JMA
11 Oct, 2007 - 10:22 AM
Post #1

New D.I.C Head
*

Joined: 11 Oct, 2007
Posts: 6


My Contributions
how do you put it on the web and can you tell me how to improve im only 12!
put it onto note pad save and look at it

CODE
</p>

<p>
Hello World
</p>

<p>
Welcome to my web site
</p>

<p>
<a href="about me.htm">

About Me

</a>
</p>


<p>
<h1>me</h1>
I am a member of dreamincode.net thats how i made this websit it taught me
everything i know i recomend it to you to find out about me click on the about me link ABOVE
</p>
<p>heres a kool game!!!!!</p>
<p><div style="width:500px;"><center><table width="500" cellpadding="0" cellspacing="1"><tr><td colspan="2" style="text-align:center;"><param name="movie" value="http://www.flashgamecodes.com/swf/"><param name="quality" value="high"><param name="menu" value="true"><embed width="500" height="500" src="http://www.flashgamecodes.com/swf/maxdirtbike.swf" quality="higpluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></td></tr><tr style="width:497px;height:17px;"><td width="60%" style="text-align:center;"><a href="http://www.flashgamecodes.com/game/11890/Max-Dirt-Bike.html">Max Dirt Bike</a></td><td style="text-align:center;"><a href="http://www.flashgamecodes.com"><font style="font:12 Arial;font-weight:bold;">Flash Games</font></a> & <a href="http://www.flashgamecodes.com"><font style="font:12 Arial;font-weight:bold;">Online Games</font></a></td></tr></table></center></div></p>
<h2>
some cool websites
</h2>
<p>
<a href="www.gangparadise.com">
gangsta paradise
</a>
</p>
<p>
<a href="www.myspace.com/jamillion_rox">
my myspace!!!
</a>
</p>


</body>
</html>

User is offlineProfile CardPM
+Quote Post

Thorian
RE: My First Html Website
11 Oct, 2007 - 02:16 PM
Post #2

Pirate Medic
Group Icon

Joined: 6 Jun, 2002
Posts: 5,750



Thanked: 5 times
Dream Kudos: 275
My Contributions
well since you are only starting out I would suggest a free webhost like Geocities if you have a yahoo account your site would be www.geocities.com/your yahoo account.

As far as the code you have pasted above. I would start off with a couple tags that are standard.
CODE
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
   "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
    <title>The Title of your site </title>
        <meta name="description" content="The Description of your site for search engines .">
        <meta name="keywords" content=" Keywords for search enginges ">
        <meta name="copyright" content="year, your name ">
        <META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=UTF-8">
</head>

<
After you have something simalar to the above you are ready to start coding the body
Everything between the
CODE
<body>..... </body>
tags is the code above. and when you are done the very last tag should be
CODE
</html>
to signify to the browser that the end of the HTML code.

To put it all together you would end up with something like this.

CODE


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
   "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
    <title>The Title of your site </title>
        <meta name="description" content="A quick little example of HTML code.">
        <meta name="keywords" content="HTML, code, sample">
        <meta name="copyright" content="2007, Thorian">
        <META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=UTF-8">
</head>

<body>

<h1> A example Heading </h1>

<p>Example Text follows</p>

<p>Back in my day it was not standard to close paragraph tags but apparently things have changed since 1996</p>

<p>the below is an example of a link, if I could remember
the tags for comments I would be using them instead of theese paragrap tags</p>

<a href="http://www.google.com">Google</a>

</body>
</html>


If you looked at the code before I edited it you would have noticed that I forgot the http:// in google and the / to turn off the heading.


User is offlineProfile CardPM
+Quote Post

asadarnell
RE: My First Html Website
11 Oct, 2007 - 03:30 PM
Post #3

D.I.C Head
**

Joined: 30 Aug, 2007
Posts: 108


My Contributions
QUOTE(Thorian @ 11 Oct, 2007 - 03:16 PM) *
blah blah

CODE

<!--this is a comment-->


This post has been edited by asadarnell: 11 Oct, 2007 - 03:30 PM
User is offlineProfile CardPM
+Quote Post

Thorian
RE: My First Html Website
11 Oct, 2007 - 06:07 PM
Post #4

Pirate Medic
Group Icon

Joined: 6 Jun, 2002
Posts: 5,750



Thanked: 5 times
Dream Kudos: 275
My Contributions
Thanks Asadarnell
I forgot.
User is offlineProfile CardPM
+Quote Post

asadarnell
RE: My First Html Website
11 Oct, 2007 - 06:11 PM
Post #5

D.I.C Head
**

Joined: 30 Aug, 2007
Posts: 108


My Contributions
QUOTE(Thorian @ 11 Oct, 2007 - 07:07 PM) *

Thanks Asadarnell
I forgot.

It's what I'm here for.
User is offlineProfile CardPM
+Quote Post

MR. JMA
RE: My First Html Website
12 Oct, 2007 - 09:59 AM
Post #6

New D.I.C Head
*

Joined: 11 Oct, 2007
Posts: 6


My Contributions
i dont get what nthat meta stuff is for!
User is offlineProfile CardPM
+Quote Post

Thorian
RE: My First Html Website
12 Oct, 2007 - 10:24 PM
Post #7

Pirate Medic
Group Icon

Joined: 6 Jun, 2002
Posts: 5,750



Thanked: 5 times
Dream Kudos: 275
My Contributions
The Meta tags are for search engines

Once you start getting better at this you are going to be intrested in Search engine ranking.

After all what good is it to put all that info out there if no one knows you are there.

You said you wanted to publicize your page I was just pointing you in the right direction.
User is offlineProfile CardPM
+Quote Post

MR. JMA
RE: My First Html Website
13 Oct, 2007 - 08:46 AM
Post #8

New D.I.C Head
*

Joined: 11 Oct, 2007
Posts: 6


My Contributions
QUOTE(Thorian @ 12 Oct, 2007 - 11:24 PM) *

The Meta tags are for search engines

Once you start getting better at this you are going to be intrested in Search engine ranking.

After all what good is it to put all that info out there if no one knows you are there.

You said you wanted to publicize your page I was just pointing you in the right direction.

ty your a BIG help!!!
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 1/7/09 10:42PM

Be Social

Dream.In.Code RSS Feed Dream.In.Code LinkedIn Group Follow Us On Twitter

Live Help!

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month