|
|
Post a Project »
Find a Professional HTML Freelancer!
Find a Freelancer to help you with your HTML projects
| |
|
 |
|
|
|
04-02-2008, 06:11 PM
|
Learning HTML
|
Posts: 133
|
Ok, as of now I have always just looked up the html that I needed, and I have never really learned amost of it, other than very basic stuff. I have seen several websites out there that teach you how html, but some of them don't exactly seem to good. Does anyone have any places they recommend for learning how to write html?
|
|
|
|
04-02-2008, 06:44 PM
|
Re: Learning HTML
|
Posts: 10,815
Name: Steven Bradley
Location: Boulder, Colorado
|
My favorite source when you're first learning is W3Schools. The link will take you directly to the HTML tutorial.
The tutorials are quick and easy and you might not even realize you're learning while you're going through them, but I find if you take the time to go through them you do come out on the other side better at coding html.
When I was learning I picked up this book. Not the most exciting read, but it does explain everything about html/xhtml and can serve as a reference for awhile. I don't refer to it anymore, but I did at first.
|
|
|
|
04-02-2008, 10:45 PM
|
Re: Learning HTML
|
Posts: 6,442
Name: James
Location: In the ocean.
|
Last edited by joder; 04-02-2008 at 10:47 PM..
|
|
|
|
04-03-2008, 12:23 PM
|
Re: Learning HTML
|
Posts: 177
|
w3schools has been pretty much my first and last stop for references to everything I would need to know. I rarely need to search google for a method I'm trying to execute. w3schools taught me javascript, php, html, html dom, mysql, and DHTML. Just start from the beginning and go to the end. What I normally do is have notepad++ open and do what they're tying to teach me, which helps reinforce the information so you won't have to look everything up constantly.
|
|
|
|
04-03-2008, 01:06 PM
|
Re: Learning HTML
|
Posts: 133
|
Ok, thanks a lot guys. I will start a little bit now, and then in about a month when finals are over I will start to get a lot more into it. After I get html down I will see where to go after that. I want to eventually learn to code php for my forums.
|
|
|
|
04-03-2008, 03:33 PM
|
Re: Learning HTML
|
Posts: 133
|
I can already see this is going to be a long road  I can tell as I learn some basic html that to make a decent website I have to know different scripting and several other things.
|
|
|
|
04-03-2008, 05:52 PM
|
Re: Learning HTML
|
Posts: 1,228
|
For PHP, I'd recommend a book by Larry Ullman called PHP and MySQL for Dynamic Websites. If you use a book and go through the tutorials, I think you'll have a better grasp than you might just from tutorials on the web. Web tutorials are good, but they haven't been edited and won't always teach you all the fundamentals.
|
|
|
|
04-03-2008, 06:34 PM
|
Re: Learning HTML
|
Posts: 10,815
Name: Steven Bradley
Location: Boulder, Colorado
|
smashking the learning never ends, but I think most of us find that part of the fun of building websites.
After html I would suggest learning css next. Eventually when you build a site you want to use html for the structure and css for the presentation. So html will define that a certain piece of content should be a level 1 heading and the css will define how a level 1 heading should look.
Once you have html and css down start looking into the scripting languages. You can really pick up new things in any order you want and you'll find yourself coming back to each for more learning all the time.
In the beginning it seems like there's too much to learn, but if you stick with it you'll learn the basics faster than you think. Don't feel overwhelmed. We were all exactly where you are now at some point.
And we'll always be happy to help answer questions you have along the way.
|
|
|
|
04-03-2008, 10:05 PM
|
Re: Learning HTML
|
Posts: 133
|
Thanks  I didn't expect it to be easy, but I guess I just didn't realize there were so many different languages and aspects. I actually just went through the basic html today, and I've actually learned quite a bit already. And I also learned just from stuff I had looked up recently that I really know more than I think I do.
|
|
|
|
04-04-2008, 08:08 PM
|
Re: Learning HTML
|
Posts: 10,815
Name: Steven Bradley
Location: Boulder, Colorado
|
There's definitely a lot to learn, but do hang in there. You'll be surprised how much faster it can be to learn enough than it first seems. You won't have to master everything to build good sites, though the more you build them the more you will want to master as much as you can.
I'm glad you're already learning html. I think going through the tutorials will help you see you do know more than you realize. You just haven't seen it all together so it's hard to know how much you already know.
|
|
|
|
04-05-2008, 11:03 AM
|
Re: Learning HTML
|
Posts: 31
Name: laredo
|
9ice One Guys, the w3school site has been very help. Keep it up guys.
|
|
|
|
04-10-2008, 01:33 PM
|
Re: Learning HTML
|
Posts: 133
|
Thanks again. For the most part everything so far seems easy to understand, it is just the matter of being able to remember how to do everything, as it takes so long to look it all up.
|
|
|
|
04-10-2008, 07:52 PM
|
Re: Learning HTML
|
Posts: 10,815
Name: Steven Bradley
Location: Boulder, Colorado
|
The more times you type it all out the easier it gets to remember, though you'll always be looking up something. I still forget things all the time and do a quick search to find how to code something I don't use that often.
|
|
|
|
04-10-2008, 07:56 PM
|
Re: Learning HTML
|
Posts: 1,670
Name: Stefan
Location: London, UK
|
After learning basic (very basic) stuff, the best way is hands on. As in looking at the code and try and understand how it functions
|
|
|
|
04-10-2008, 08:23 PM
|
Re: Learning HTML
|
Posts: 10,815
Name: Steven Bradley
Location: Boulder, Colorado
|
Good point Gilligan. One of the things I used to do more, but still do is whenever I see a web page doing something that I like I look at the source and see how they did it.
Maybe you see a layout you like and wonder how it was put together. Bookmark the site and when you have time look at the source and see if you can understand how the page was put together. At first it may be confusing, but the more code you look at the easier it becomes to read code in general and the quicker you can see how other sites are put together.
|
|
|
|
04-11-2008, 03:36 AM
|
Re: Learning HTML
|
Posts: 507
Name: Tamar Weinberg
Location: New York
|
Quote:
Originally Posted by vangogh
smashking the learning never ends, but I think most of us find that part of the fun of building websites.
|
Interestingly, when HTML was the dominant scripting language, I learned by studying code and editing it to see what it did.
Now, CSS is more dominant than HTML (of course, with HTML at its core). I'm a bit lost. 
|
|
|
|
04-11-2008, 10:16 AM
|
Re: Learning HTML
|
Posts: 1,670
Name: Stefan
Location: London, UK
|
HTML is still dominant. Use can use CSS to apply colours and what have you. But HTML puts it all together.
CSS makes it pretty, HTML controls it.
|
|
|
|
04-11-2008, 05:29 PM
|
Re: Learning HTML
|
Posts: 1,534
|
The 1st two links posted, w3schools and htmlgoodies are what I used several years ago when I first started learning html. I suggest you start there.
__________________
AdminAddict.com - Please login or register to view this content. Registration is FREE
|
|
|
|
|
« Reply to Learning HTML
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|