Go Back   Horror.com Forums - Talk about horror. > Horror.com Lobby > Horror.com General Forum
Register FAQ Community Calendar

Reply
 
Thread Tools
  #1  
Old 11-22-2006, 07:20 AM
Vodstok's Avatar
Vodstok Vodstok is offline
Fear scented candle
 
Join Date: Jan 2004
Location: The edge of forever
Posts: 13,650
Free Web Site lessons

Okay, I have another thread going where i am teaching programming in C#, and i was wondering, If i teach soem basic HTML, web design, amybe even some more advanced stuff, would anyone be interested?
__________________
Some misguided people decided I was funny enough to pay. See if they're right:
http://www.cracked.com/members/Vodstok/
(I tweet pretty hardcore, too)
Reply With Quote
  #2  
Old 11-22-2006, 08:10 AM
VampiricClown VampiricClown is offline
Evil Dead
 
Join Date: Nov 2005
Posts: 7,043
Aye, I'm up for really anything like this.
Reply With Quote
  #3  
Old 11-22-2006, 08:12 AM
Vodstok's Avatar
Vodstok Vodstok is offline
Fear scented candle
 
Join Date: Jan 2004
Location: The edge of forever
Posts: 13,650
Quote:
Originally Posted by VampiricClown View Post
Aye, I'm up for really anything like this.
:)

i will probably stick to the same format with this one, theory will be optional and in dark green. I will start with things that are basic, but cool.
__________________
Some misguided people decided I was funny enough to pay. See if they're right:
http://www.cracked.com/members/Vodstok/
(I tweet pretty hardcore, too)
Reply With Quote
  #4  
Old 11-22-2006, 08:46 AM
Vodstok's Avatar
Vodstok Vodstok is offline
Fear scented candle
 
Join Date: Jan 2004
Location: The edge of forever
Posts: 13,650
Well then, let's start shall we?


now, for absolutely basic HTML, you actually only need a plaintext editor. If you use windows, notepad works fine.

Pretty much every HTML book on earth says this, so i will too: Don't use so-called "rich-text" editors like Word or Wordpad for coding html. They add all kinds of weird formatting that doesnt really jive with HTML.


So try this, creat a text file, and name it "page.htm". If you get prompted about changing the file extension, click yes. Right click it and select "Open with", and if it asks you if you want to select a program or search the web, choose select a program and then click ok. In the list you are presented with, select notepad and then ok.


now, we need to type something. This is the most basic standard for a web page. It is NOT necesarry to format everything 100% correctly, almost all web browsers are very forgiving when interpreting HTML. if you could see how awful some of the code is on many (if not most) professional pages was, you would laugh.

here we go:

<html>
<head></head>
<body></body>
</html>


Notice that all tags have an opening and closing tag. its not really allthat different from UBB code or the Vb code the forum uses. You see the head and body tags? how they sit inside the HTML tags? that is called nesting. Remember that, because it is important later on.

Now, any of these can be left out and the page will work just fine. BUT, there is this little thingout there called "best practices". These groups of really smart people sit down and hash out sets of guidelines, which are base don the most efficient, and usually easy to read ways of doing things. i am a big fan of using best practices because it keeps things consistent and easy to read. My first pro web job had me going through 2000 files, getting rid of the 98% that werent necesarry, and giving a consistent look and feel to the ones that were left over. I have many many emotional scars from this.

Anyway, you probably want to know how to do something fun.

we have our basic code, now make it look like this:
<html>
<head>
<title>My Page</title>
</head>
<body>
This is the body.
</body>
</html>

save it, and open the file in your web browser. look at the title bar, it should say "MY Page", and the window itself should say "This is the body."

Congradulations. You just made a web page.
__________________
Some misguided people decided I was funny enough to pay. See if they're right:
http://www.cracked.com/members/Vodstok/
(I tweet pretty hardcore, too)
Reply With Quote
  #5  
Old 11-22-2006, 08:48 AM
Vodstok's Avatar
Vodstok Vodstok is offline
Fear scented candle
 
Join Date: Jan 2004
Location: The edge of forever
Posts: 13,650
okay, here is where i make life easier. we are going to use a web developement tool. They format the code and generally make life easier than looking at everythign in black and white, plus come with cool little auto-fill and WYSIWYG editors (What You See Is What You Get, an appropriate but inaccurate term.)


First off, my prefered developement tool right now is this:
http://download.microsoft.com/downlo...D/vwdsetup.exe


again, it is a Microsoft program that requires a .net passport. Again, they won't eat your soul, they are just a software company.

Register it. It makes life easier.
Oh, and it requires this:
http://www.microsoft.com/downloads/d...displaylang=en


if you dont already have it, get it and install it first. okay.
__________________
Some misguided people decided I was funny enough to pay. See if they're right:
http://www.cracked.com/members/Vodstok/
(I tweet pretty hardcore, too)
Reply With Quote
  #6  
Old 11-22-2006, 04:46 PM
Vodstok's Avatar
Vodstok Vodstok is offline
Fear scented candle
 
Join Date: Jan 2004
Location: The edge of forever
Posts: 13,650
This ne is getting a lot fo hits too... :)
__________________
Some misguided people decided I was funny enough to pay. See if they're right:
http://www.cracked.com/members/Vodstok/
(I tweet pretty hardcore, too)
Reply With Quote
  #7  
Old 11-22-2006, 05:52 PM
kpropain's Avatar
kpropain kpropain is offline
BMXICAN
 
Join Date: Jan 2004
Location: Somewhere Outside The Realm Of Hell
Posts: 9,200
This is a great thread Vod... I've really wanted to get into understanding html better, so anything you can give here is def appreciated :)
__________________







Jesus had a tough life. I read about that guy. Jesus is the only guy that ever came back from the dead that didn't scare the F--- out of everybody!
-Sam Kinison
Reply With Quote
  #8  
Old 11-22-2006, 05:59 PM
Shady's Avatar
Shady Shady is offline
Evil Dead
 
Join Date: Nov 2006
Location: Detroit, Michigan
Posts: 251
Im in the process of making a website and it will be up in a month or two. It would be up in a week but im writing a review on every horror movie I have seen so thats going to take forever. I finally finished my main layout and so far its looking good, cant wait to get it up. I will be sure to post it when it is done. Im using some HTML when Dreamweaver doesnt cut it.

<img src="Buttons/Home.jpg" alt="spacer pic" width="93" height="18"

I cant even tell you how many times Ive had to use that code.
Reply With Quote
  #9  
Old 11-22-2006, 06:32 PM
Shady's Avatar
Shady Shady is offline
Evil Dead
 
Join Date: Nov 2006
Location: Detroit, Michigan
Posts: 251
My main layout is finished. Tell me what you think, anything I should change?

http://i145.photobucket.com/albums/r...ral/layout.jpg
Reply With Quote
  #10  
Old 11-22-2006, 06:35 PM
kpropain's Avatar
kpropain kpropain is offline
BMXICAN
 
Join Date: Jan 2004
Location: Somewhere Outside The Realm Of Hell
Posts: 9,200
Quote:
Originally Posted by Shady View Post
My main layout is finished. Tell me what you think, anything I should change?

http://i145.photobucket.com/albums/r...ral/layout.jpg

That's pretty cool, I like that design...
__________________







Jesus had a tough life. I read about that guy. Jesus is the only guy that ever came back from the dead that didn't scare the F--- out of everybody!
-Sam Kinison
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -8. The time now is 11:33 PM.