Stop Microsoft

Miscellaneous => Programming & Networking => Topic started by: Bazoukas on 6 September 2002, 21:00

Title: Fuck it. Am gonna learn HTML tonight.
Post by: Bazoukas on 6 September 2002, 21:00
Am into C++ but i just wanna get over with this, since people say you can learn html in 3-4 hours. Is this true?
Title: Fuck it. Am gonna learn HTML tonight.
Post by: Calum on 6 September 2002, 21:30
sure is! but then you'll know that by the morning!  :D

my advice for learning html is get Dave Raggett's tutorials here (http://www.w3.org/MarkUp/#tutorials), he packs a lot of info into quite small documents and still makes it easy to read.
Title: Fuck it. Am gonna learn HTML tonight.
Post by: Bazoukas on 6 September 2002, 21:45
Thanks alot man fot the link  (http://smile.gif)
 Good thing i got a litter of coffe in the kitchen lol
Title: Fuck it. Am gonna learn HTML tonight.
Post by: voidmain on 6 September 2002, 21:52
This is all you need to know:

Code: [Select]

That's pretty much the "basics".  HTML is free flow and relies completely on tags (<...>)  for formatting and structure.  The above is pretty much the starting point for any HTML page. Of course there are many more tags (not MANY more though), and most tags have property parameters.  For instance, you want to change the background color of your page you add a parameter to the <BODY> tag.  e.g. <BODY BGCOLOR="white">.  

Most, but not all tags have a start/stop or begin/end to contain the effect of the tag within the begin and end block (much like the purpose of begin/end blocks in any programming languate. In C++ that would be the "{" and "}".  It is important not to overlap the begin/end tags in HTML just as in any other programming languages (you can nest, but you shouldn't overlap).

For instance, you might want to create a table (like spreadsheet cells).  The begin of the table is "<TABLE>" and the end of the table is "</TABLE>".

Code: [Select]

You can copy paste these examples into a text file with an *.html name and open them in a browser.  Change them around and add stuff.  Search google for "html tutorial" and there are millions of references.  There really isn't a lot to it more than that.  The best thing for you to have is a reference listing all of the tags and what their parameters are. For instance "<TABLE BORDER=0>" would turn off the borders (lines) in your table (actually it just sets the width of the lines to 0, you can use any number to change the width of the lines).  Tables are used often for formating/arranging text nicely.  You can embed tables within tables.

And I have my own method of indentation and spacing for readability of the source but that's all up to you, it doesn't effect the rendering of the page.

I would suggest first starting with basic HTML which really should take mere minutes to get the hang of with a good tutorial off of google. It will teach you the basic tags and explain how to use links and urls, etc.  

Then to get a little more advanced you might want to look for a little more intermediate tutorials that discuss forms and frames.  Then for maybe a little more advanced you might want to look in to JavaScript or dynamic HTML but you can do a LOT with just basic HTML and I prefer not to use JavaScript if at all possible.  I do a lot of dynamic HTML using PHP and Perl but before you can do that you still need to know basic HTML.

Good luck and if you get stuck we can help you out.

[ September 06, 2002: Message edited by: void main ]

Title: Fuck it. Am gonna learn HTML tonight.
Post by: Bazoukas on 6 September 2002, 10:04
you guys rock the house!


  Kinda feel bad that i dont know much as you guys know, so i can help out with other noobs. But shit am on my way  :D

  I wont sleep at all tonight, even though I have to work tomorow at 8 till 3.

 "Coooooooooomoooooooooooooon .........trading your  hours for a couple of dimes,,,gonna make it baby on our prime!!!!"
 DOORS.
Title: Fuck it. Am gonna learn HTML tonight.
Post by: voidmain on 6 September 2002, 10:25
Oh you'll be up to speed sooner than you think.  And another good trick is to click "view source" in your browser's menu to steal tricks from other people (do it right here on this forum and you'll see how this page is built, even though this forum example was dynamically generated, makes no difference you can save it as a normal HTML file and modify it statically as well).

[ September 06, 2002: Message edited by: void main ]

Title: Fuck it. Am gonna learn HTML tonight.
Post by: Bazoukas on 6 September 2002, 10:53
Woohooooooooo (http://www.angelfire.com/linux/curiousgeorge0/)
Title: Fuck it. Am gonna learn HTML tonight.
Post by: voidmain on 6 September 2002, 10:59
You got it. Now you can help others learn HTML.   (http://smile.gif)    And a neat trick you can add to your link to this site is make it open in a new browser window (this can sometimes be nice but you may not always want to do it. Generally when you have links to other sites you might want it to pop up in a new window but if it is a link to another page on your site you might just have it follow the link as you have in your current example).  To do this you would add the "target=" parameter to your link:

<a href="http://FuckMicrosoft.com/" target=fuckmicrosoft>LINUX</a>

Also, you should not leave out the <HTML></HTML>, <HEAD></HEAD>, and <BODY></BODY> tags. These are rather important tags that should be in every web page. The <HTML> tag should be the first one in your document. The <TITLE></TITLE> tags should be contained within the <HEAD></HEAD> tags.  The <BODY> tag should start right after the </HEAD> tag. The </BODY> tag should appear right before the </HTML> tag which should be the last tag in your document. All of the tags that control the look of your document should be within the BODY tags.  Hopefully that's not too confusing.

[ September 06, 2002: Message edited by: void main ]

Title: Fuck it. Am gonna learn HTML tonight.
Post by: Bazoukas on 6 September 2002, 11:07
Am on it Sir.   I was wondering about that when i was typing it.


Am gonna do that now and I will also play with colors and fonts.

weeeeeeeeeeee this is fun.

 VoidMan you were right when you said, "instant gradification".

 FRONTPAGE CAN KISS MY ASS!
 And PHP here i come.
Title: Fuck it. Am gonna learn HTML tonight.
Post by: Calum on 6 September 2002, 11:12
told you you would get it in an hour or two!  :D

voidmain, do you ever sleep?

also, top cool for taking the time to post that html help there, it took me weeks to find out some of those tips!
Title: Fuck it. Am gonna learn HTML tonight.
Post by: voidmain on 6 September 2002, 11:28
quote:
Originally posted by bazoukas:
VoidMan you were right when you said, "instant gradification".

 FRONTPAGE CAN KISS MY ASS!
 And PHP here i come.



I wish more people would just actually *try* learning HTML.  They don't know how easy it really is.  As far as I'm concerned it's MUCH easier than fighting over WYSIWYG editors.  But people think they have to use a mouse button to do anything anymore and anything else must be too hard.

PHP really is fun. It's sort of an in-between language to HTML and C.  The thing I really like about PHP is the way you can easily intermingle plain HTML with PHP code. You can take your standard HTML file that you are creating and just rename it from an *.html extension to *.php and it will still look exactly as it does as an HTML file.  But then you can add php code to make it *really* cool:

Code: [Select]

There are plenty of PHP tutorials as well.  When you get the basics you are going to want to get into hooking up to MySQL or PostgreSQL databases.  That's when it really starts getting fun and productive!
Title: Fuck it. Am gonna learn HTML tonight.
Post by: voidmain on 6 September 2002, 11:31
quote:
Originally posted by Calum:
voidmain, do you ever sleep?



Na, sleeping is over rated! I'm having too much fun, and hell, I don't need to get up in the mornings lately with the busted bones.
Title: Fuck it. Am gonna learn HTML tonight.
Post by: Bazoukas on 6 September 2002, 11:56
wohoooo number two.
  I did a table and FMS pops on a different window


 I had trouble with chanignt he font size but it was because i  didnt see that i forgot the equal sign.


wohoooooooo tables (http://www.angelfire.com/linux/curiousgeorge0/)


stupid AT&T and their dpwntimes.

[ September 06, 2002: Message edited by: bazoukas ]

Title: Fuck it. Am gonna learn HTML tonight.
Post by: Bazoukas on 6 September 2002, 12:15
And here it is with a Pic muhahaha (http://www.angelfire.com/linux/curiousgeorge0/)

[ September 06, 2002: Message edited by: bazoukas ]

Title: Fuck it. Am gonna learn HTML tonight.
Post by: Calum on 6 September 2002, 13:00
i'm a new hand at html myself! i never knew about <em> before, does it just do the same as <i> ?
which is more right?

also, i like <hr>. might have to use it in my site...
Title: Fuck it. Am gonna learn HTML tonight.
Post by: Bazoukas on 6 September 2002, 13:10
hmm calum i dont have the slightest idea what <i> does.
 I loged on windows to a play a game,,,,but give me a few minutes to go back at RH and try it out.
Title: Fuck it. Am gonna learn HTML tonight.
Post by: Bazoukas on 6 September 2002, 13:34
stupid cable disconections.

 I tried it calum and from what I see in Galeon it does the same thing. If you ask me its the same thing as putting it as in <i> </i> italics.
 I dont understand the difference.  :confused:
Title: Fuck it. Am gonna learn HTML tonight.
Post by: voidmain on 6 September 2002, 13:49
Might I suggest a reference?

http://developer.netscape.com/docs/manuals/htmlguid/alphlist.htm (http://developer.netscape.com/docs/manuals/htmlguid/alphlist.htm)
Title: Fuck it. Am gonna learn HTML tonight.
Post by: Bazoukas on 6 September 2002, 13:55
WOOOOOOOOOOOOOOOOOW!


 Thats a cool link  :D
Title: Fuck it. Am gonna learn HTML tonight.
Post by: flap on 6 September 2002, 14:22
A good idea might be to start checking your pages with http://validator.w3.org (http://validator.w3.org) so you get into the habit of writing standards-compliant html.
Title: Fuck it. Am gonna learn HTML tonight.
Post by: smokey on 6 September 2002, 15:59
quote:
Originally posted by void main:


Na, sleeping is over rated! I'm having too much fun, and hell, I don't need to get up in the mornings lately with the busted bones.



I agree sleep is for the weak  :D
I should learn html or something - I currently use dreamweaver.
Title: Fuck it. Am gonna learn HTML tonight.
Post by: Calum on 6 September 2002, 21:17
is there a definitive thing somewhere about whether a tag is standards compliant or not? example, on that list the hr tag says netscape 1.1 next to it. does this mean it is a netscape tag that many browsers now support, or does it mean it was a netscape tag that is now officially compliant? what?
Title: Fuck it. Am gonna learn HTML tonight.
Post by: voidmain on 6 September 2002, 22:56
Calum. That is a *very* good question and not one most M$ web site designers ask themselves, which causes us even more hate toward M$.  There are some good references out there that will list all of the tags (similar to the link I gave you from netscape) that will list all of the tags, whether they are netscape or IE specific, what versions they were introduced in and what HTML standard they are compliant with.

Here's an example of a very good one, notice the HTML version, the IE version and the Netscape version:

http://freespace.virgin.net/sizzling.jalfrezi/frames/fi.htm (http://freespace.virgin.net/sizzling.jalfrezi/frames/fi.htm)

You'll notice that not just the tags can be browser specific but parameter extensions to normal tags can be browser specific. So it is very wise for you to make sure you are writing your HTML with compliancy in mind.  You can tailor your HTML to check the browser and version and branch off to browser specific code but HTML can get very complex when you do this and requires the use of JavaScript.  You can make a very nice web site using standards concious HTML very easily as long as you know if you are using a proprietary tag or parameter.

[ September 06, 2002: Message edited by: void main ]