Staredit Network

Staredit Network -> Computers and Technical -> HTML Tutorial Suggestions
Report, edit, etc...Posted by ... on 2006-03-01 at 20:42:12
I'm currently working on a detailed HTML tutorial guide. I would like to ask you all on what should I add to the tutorial. Something you like to learn.

Things I don't accept:

Javascript
DIV tags (Haven't mastered or learned this one yet)
Report, edit, etc...Posted by Jordan on 2006-03-01 at 20:54:14
javascript isnt html.. thats a whole different category. div are easy.

# = id
. = class

.test { background-color: #000; color: #fff; }

you would have <div CLASS="test">text test</div>

for id...

#test { background-color: #000; color: #fff; }

you then would have <div ID="test">text test</div>

these #test or .test are placed in your CSS (style sheets)


It would then look like a full black background with white text. You can also change the width and height.

<div class="test" width="percent%" height="0px">
text test</div>



enjoy.
Report, edit, etc...Posted by RexyRex on 2006-03-02 at 01:09:22
That's CSS..

Do forms, fieldsets, tables (biggy), all form elements (dropdowns etc), and buttons. Then go into CSS. Then go into Javascript. Then go into PHP. smile.gif
Report, edit, etc...Posted by Shadow_da_Sniper on 2006-03-02 at 13:29:50
Meheh.


Wait.


First HTML, CSS, JavaScript, and then something more easier than PHP first.
How about DHTML? - Combination of HTML (ofcourse), Jacascript, and CSS!!!
Report, edit, etc...Posted by Deathawk on 2006-03-02 at 13:39:14
HERE'S A SUGGESTION!
MAKE IT EASY!!@
Report, edit, etc...Posted by Shadow_da_Sniper on 2006-03-02 at 13:41:19
Poop to you too.
Report, edit, etc...Posted by ... on 2006-03-02 at 15:40:30
QUOTE(Fierce @ Mar 1 2006, 08:54 PM)
javascript isnt html.. thats a whole different category. div are easy.

# = id
. = class

.test { background-color: #000; color: #fff; }

you would have <div CLASS="test">text test</div>

for id...

#test { background-color: #000; color: #fff; }

you then would have <div ID="test">text test</div>

these #test or .test are placed in your CSS (style sheets)
It would then look like a full black background with white text. You can also change the width and height.

<div class="test" width="percent%" height="0px">
text test</div>
enjoy.
[right][snapback]437339[/snapback][/right]


Hmm, well. I may learn how to use DIVs soon. I already knew how to make class/ids because I looked at IPB source. smile.gif

QUOTE(RexyRex @ Mar 2 2006, 01:09 AM)
That's CSS..

Do forms, fieldsets, tables (biggy), all form elements (dropdowns etc), and buttons. Then go into CSS. Then go into Javascript. Then go into PHP. smile.gif
[right][snapback]437532[/snapback][/right]


Of course, I'll teach you all how to do most forms.

QUOTE(Shadow_da_Sniper @ Mar 2 2006, 01:29 PM)
Meheh.
Wait.
First HTML, CSS, JavaScript, and then something more easier than PHP first.
How about DHTML? - Combination of HTML (ofcourse), Jacascript, and CSS!!!
[right][snapback]437623[/snapback][/right]


I'll start out with HTML, then CSS, then DHTML, then Javascript, then ASP, then PHP. It'll be a long time for me to learn and master DHTML, Javascript, ASP, and PHP. pinch.gif


QUOTE(GgG-Deathawk @ Mar 2 2006, 01:39 PM)
HERE'S A SUGGESTION!
MAKE IT EASY!!@
[right][snapback]437626[/snapback][/right]


It will be. happy.gif
Report, edit, etc...Posted by olaboy- on 2006-03-02 at 16:08:00
HTML is too easy to make a guide, programs like Dreamweaver and NVU make it so you don't need to know any HTML. Plus there's other great guides:

http://www.w3schools.com/ (Official web building organization)
http://www.htmlgoodies.com/primers/html/article.php/3478131

Make a guide on something harder like CSS or JavaScript.
Report, edit, etc...Posted by ... on 2006-03-02 at 16:24:50
It's mainly for my friend who really don't understand how to make HTML even with those sites listed.
Report, edit, etc...Posted by Centreri on 2006-03-03 at 17:32:24
Meh.
HTML-
Beginning Tags (<html>, etc)
Text Manipulation (<i>, <font>, etc)
Tables (<Table>, <tr>, etc)
Division Manipulation (<div>) (easy)
Forms (<form>, <input>, etc)
Media (<embed>, <object>, <img>, etc)
Linking (<a>)

CSS-
Link Manipulation (text-decoration: none;)
Text Color (color: #000000;)
Background (background-color: #000000;, background-image: url('something.gif')wink.gif
Border (border: 2px)



QUOTE
I'll start out with HTML, then CSS, then DHTML, then Javascript, then ASP, then PHP.

Skip DHTML and ASP.
ASP is (as far as I know) a server-side language similar to PHP, and DHTML is either something similar to Javascript or a combination of HTML, CSS, and Javascript. You can also try VBscript instead of Javascript, it has different syntax but similar in capabilities.
Report, edit, etc...Posted by Staredit.Net Essence on 2006-03-03 at 17:46:17
CODE
<HTML>
<HEAD>
<TITLE>Moo</TITLE>
</HEAD>
<BODY><DIV align="center"><P>HTML is really simple.</P></DIV>
<A Href="http://www.yahoo.com>Yahoo</A>
</BODY>
</HTML>


Easy.

ADDITION:
JavaScript is what it's called. A Script, that uses Java.

PHP used to be known as Personal Home Page, but is something around like PreProcessor something.. I don't care much for names, lol

I've never tried Visual C#.Net.. But I assume that is the strongest Script Code available..
Report, edit, etc...Posted by Doodle77(MM) on 2006-03-03 at 18:34:22
To quote my book that helped me learn Javascript:
QUOTE(Javascript Visual Quickstart Guide)
Javascript is not Java
Report, edit, etc...Posted by Centreri on 2006-03-03 at 18:36:12
Yah.. Java is an advanced programming language while Javascript is a lowly browser-side scripting language.
Report, edit, etc...Posted by Staredit.Net Essence on 2006-03-03 at 18:58:47
C++ is the best, so I assume that Visual C#.Net is the best script type...
Report, edit, etc...Posted by Gradius on 2006-03-05 at 13:21:57
Uh...visualc#.net is a programming language. Has nothing to do with the web. Unless youre talking about makeing modules for asp or something.
Next Page (1)