Jump to content



Welcome to AstaHost - Dear Guest , Please Register here to get Your own website. - Ask a Question / Express Opinion / Reply w/o Sign-Up!

Toggle shoutbox Shoutbox Open the Shoutbox in a popup

@  agyat : (24 May 2013 - 05:15 PM) O Dear, Where Are You? Without Your Words This Sb Is ..
@  agyat : (23 May 2013 - 01:23 AM) Wow! Mr. Sb Back Home.
@  OpaQue : (23 May 2013 - 12:44 AM) Ting
@  OpaQue : (24 April 2013 - 02:44 PM) I guess, Time to run Mycent script.
@  OpaQue : (24 April 2013 - 02:43 PM) wow.. not much spam. except habatt posting lot of links.. :P
@  yordan : (23 April 2013 - 01:04 PM) You're welcome, agyat. Nice to have been helpful. Second lesson: try full words, "you" instead of "EW".
@  agyat : (23 April 2013 - 05:03 AM) @YORDAN: tHANK EW FOR YOUR FIRST LESSON.   :D
@  yordan : (22 April 2013 - 09:43 PM) @agyat : "why don't you help me", or "please help me", or "please teach us"
@  yordan : (22 April 2013 - 09:42 PM) welcome back, velma
@  velma : (22 April 2013 - 07:51 AM) **yawns** Good to be back, wonder what is going on here :)
@  agyat : (22 April 2013 - 03:50 AM) Oh! so, why don't help me learn english..
@  yordan : (21 April 2013 - 08:38 PM) The goal mentioned by shiu : "learning english, learning computer"
@  agyat : (21 April 2013 - 06:31 PM) WHAT GOAL?
@  yordan : (20 April 2013 - 10:39 AM) yes, that's our goal. simultaneouly learning English and teaching/learning computer using.
@  shiyu : (20 April 2013 - 07:30 AM) learning english,learning computer
@  yordan : (19 April 2013 - 01:11 PM) Oh, I see, it's just a trick in order to force people looking at your texte. Somehow smart, maybe.
@  agyat : (19 April 2013 - 02:54 AM) And of course I know it is not SEO friendly.
@  agyat : (19 April 2013 - 02:52 AM) There may be two possible answers for that ....


1) Shout was posted using mobile keypad.

2) To force people read content carefully and/or with more concentration.
@  agyat : (19 April 2013 - 02:49 AM) There may be two possible answers for that ....
@  yordan : (18 April 2013 - 09:35 PM) however, why this mixing of capital letters in the middle of your text?

Replying to Starting Your Website With Html


Post Options

    • Can't make it out? Click here to generate a new image

  or Cancel


Topic Summary

chocolatxbliss

Posted 28 December 2005 - 04:49 PM

yeah a lot of people don't know the basics, and that's good :huh: but that's soo old school for us um html nerds hahahhaha
maybe i should like do a tutorial on other things...or maybe just make my own HTML help site xD

YudzzY

Posted 27 December 2005 - 07:43 PM

this is just the basic of basics..
things like how to insert a picture, object etc should be included nah..
..and if i knew it i would have wrote it up but oops! lol

NAchi

Posted 21 December 2005 - 11:01 PM

I think people should know some basic HTML, as mentioned above, because later one they can explore and test out things. rofl. at least that was what i did.

Quatrux

Posted 21 December 2005 - 01:04 PM

Yes, very basic stuff indeed, but I wonder do people not knowing this come to this kind of a forum ? huh, or maybe they do then people can create sites nowdays without knowing anything.. it is a pitty :huh:

MarkBla

Posted 21 December 2005 - 10:48 AM

This is the very base of html :)
If someone wants to get on with html, just go to google, and type: html tutorial. You'll get a lot of hits, now you only have to find one with your knowledge :huh:

Mark

HTML_Guru

Posted 09 September 2005 - 04:27 PM

Oh, okay, so someone has made a tutorial like mine before... good, then mine's just reinforcement, ;) .

This a very good explaination of website creation. I hope everyone will find a use for this information.

(vujsa likes my tutorial... YES!)

vujsa

Posted 09 September 2005 - 04:56 AM

This a very good explaination of website creation. I hope everyone will find a use for this information.

I was reading through the tutorials, and it seems throughout the tutorials, no one has ever really taught how to build a beginner's page using HTML.  Not that it's anyone's fault, but if someone is unsure of how to begin and end a page with HTML, then they will not be able to make a page.

<{POST_SNAPBACK}>


You were wrong about one thing though, there has been HTML tutorials written in the programing tutorials category. For more information, may I suggest that new HTML users read this:
HTML 101 - Web Design For Beginners: Absolute Basic HTML Writing
And This:
HTML 102 - Web Design For Beginners: More Basic HTML Writing

vujsa

HTML_Guru

Posted 09 September 2005 - 12:09 AM

I was reading through the tutorials, and it seems throughout the tutorials, no one has ever really taught how to build a beginner's page using HTML. Not that it's anyone's fault, but if someone is unsure of how to begin and end a page with HTML, then they will not be able to make a page.

So, I figured I'd lend a hand...

--------------------------------------------

To begin your first webpage using HTML, you will need these tags* (in this order):

<html>
<head>
<title>YOUR TITLE FOR YOUR PAGE</title>
</head>
<body>

THIS IS WHERE YOUR MAIN TEXT GOES

</body>
</html>

To explain: The HTML is in other words used to signify the beginning of the page; the beginning of the HyperText Markup Language* "coding".

The HEAD tag is used to show that everything between the beginning and end of that tag will be shown at the top, as the title of the page. Though it's not necessary for beginners to know this, it's also used for meta tags and things of that nature.

The TITLE tag is exactly what it says, the title for the page, which shows at the top... all the way at the top.

Then you have the end of the HEAD (shown by the slash before the code; that's necessary in all cases to end tags), and the beginning of the BODY. The BODY is used for the main text of your page. This is where mostly all of your information will go.

Then, finally, the end of the BODY, and thusly the end of the webpage, shown by the "/HEAD" tag.

--------------------------------------------

That about covers all you need to know to start a page. Mind you, as yo uget more experienced, you'll learn more codes and tidbits to add to spice up your page... but for now, that's all you need to know.

P.S. If you want to understand a bit more of how the codes translate into webpages and such, play with the tags a bit; see what happens.

--------------------------------------------
tag*: simply the HTML coding, shown in this manner:
<CODE>
and often ending in
</CODE>

HTML (HyperText Markup Lanuguage)*: the "language", if you will, for websites; this is the set of codes and otherwise that ultimately leads to a webpage.

Review the complete topic (launches new window)