Html website tutorial

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
User avatar
DStudios
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 24
Joined: Wed Feb 02, 2011 7:44 am
Current Project: 2D RPG
Favorite Gaming Platforms: NES, SNES, N64, Sega Dreamcast, Sega Genesis
Programming Language of Choice: C/C++

Html website tutorial

Post by DStudios »

Here is a tutorial on developing a website in html.
This tutorial is for beginners in html.

Part 1:


I recommend watching it in HD.

Feel free to leave feedback.
User avatar
DStudios
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 24
Joined: Wed Feb 02, 2011 7:44 am
Current Project: 2D RPG
Favorite Gaming Platforms: NES, SNES, N64, Sega Dreamcast, Sega Genesis
Programming Language of Choice: C/C++

Re: Html website tutorial

Post by DStudios »

Here's part 2:
User avatar
DStudios
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 24
Joined: Wed Feb 02, 2011 7:44 am
Current Project: 2D RPG
Favorite Gaming Platforms: NES, SNES, N64, Sega Dreamcast, Sega Genesis
Programming Language of Choice: C/C++

Re: Html website tutorial

Post by DStudios »

Part 3:
User avatar
DStudios
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 24
Joined: Wed Feb 02, 2011 7:44 am
Current Project: 2D RPG
Favorite Gaming Platforms: NES, SNES, N64, Sega Dreamcast, Sega Genesis
Programming Language of Choice: C/C++

Re: Html website tutorial

Post by DStudios »

I will be recording another video soon.
User avatar
DStudios
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 24
Joined: Wed Feb 02, 2011 7:44 am
Current Project: 2D RPG
Favorite Gaming Platforms: NES, SNES, N64, Sega Dreamcast, Sega Genesis
Programming Language of Choice: C/C++

Re: Html website tutorial

Post by DStudios »

I just recorded it, but now I have to re-record. :(
User avatar
k1net1k
Chaos Rift Maniac
Chaos Rift Maniac
Posts: 563
Joined: Sun Nov 07, 2010 2:58 pm
Contact:

Re: Html website tutorial

Post by k1net1k »

Hey its good that you are making tutorials :) a couple of things i would add. (keeping in mind these are beginner tutorials) these comments of mine may be better for a 2nd tutorial series, or for slighly more advance newbies.

Keep content and style seperate. eg use <body> and then style the bgcolor with a css stylesheet. if you decide later that you didnt like your color you will have to go and change it on 5 pages or whatever. its also better from an accessibility standpoint (some people turn off styling, or have screen readers etc)

for menu's use <ul> you can style up the menu's with css, and you can even apply images and rollover effects using css. it keeps the html cleaner by not having style code in the html file. (eg makes it easier to debug later too because you are only dealing with semantic html, and then stlye in a seperate file, and its easy to switch css on/off) so many errors i see aren't anything wrong with HTML but with associated code trying to do fancy stuff.

add alt="Enter site" or whatever description to images too. not just for accessibility users, but tools like dreamweaver/frontpage will often prompt for these fields when inserting an image, and people dont understand what they are for.

not to mention that the pages will also validate on w3c :)

these things will help people to learn the correct way, instead of forming bad habits early on. you could explain both of these methods, and why one is better than the other.
User avatar
DStudios
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 24
Joined: Wed Feb 02, 2011 7:44 am
Current Project: 2D RPG
Favorite Gaming Platforms: NES, SNES, N64, Sega Dreamcast, Sega Genesis
Programming Language of Choice: C/C++

Re: Html website tutorial

Post by DStudios »

k1net1k wrote:Hey its good that you are making tutorials :) a couple of things i would add. (keeping in mind these are beginner tutorials) these comments of mine may be better for a 2nd tutorial series, or for slighly more advance newbies.

Keep content and style seperate. eg use <body> and then style the bgcolor with a css stylesheet. if you decide later that you didnt like your color you will have to go and change it on 5 pages or whatever. its also better from an accessibility standpoint (some people turn off styling, or have screen readers etc)

for menu's use <ul> you can style up the menu's with css, and you can even apply images and rollover effects using css. it keeps the html cleaner by not having style code in the html file. (eg makes it easier to debug later too because you are only dealing with semantic html, and then stlye in a seperate file, and its easy to switch css on/off) so many errors i see aren't anything wrong with HTML but with associated code trying to do fancy stuff.

add alt="Enter site" or whatever description to images too. not just for accessibility users, but tools like dreamweaver/frontpage will often prompt for these fields when inserting an image, and people dont understand what they are for.

not to mention that the pages will also validate on w3c :)

these things will help people to learn the correct way, instead of forming bad habits early on. you could explain both of these methods, and why one is better than the other.
thanks for the reply.
Post Reply