| | #1 |
| Organization Member | Introduction Hey all. The objective of this tutorial is to teach you how to build a web site. As some of you might know I am a web developer. I have experience in four web languages which are HTML, CSS, PHP, and SQL. Most of my experience is invested into HTML and CSS so I will be creating a guide that will teach the Kingdom Hearts Insider community on how to make a basic website. I will not post everything I know at one time. Every week or so or whenever I have the chance to I would continue on with my guide and post another chapter. The chapters will go in this sequence:
What is HTML HTML is the primary and predominent web language used to create the exterior of a web site. In other words it is the part of a web site that you can see. For example, a link or an image on a site is HTML, you can see it. Posting something on a forum, or a guestbook is PHP, and SQL (most likely). HTML is an acronym for Hyper Text Markup Language. The world is quickly shifting to XHTML as a web standard. XHTML is almost the same thing but you can consider it neater. It is properly nested which I will explain later in the guide. Also, I advice you to write all of your HTML in lowercase because cell phone browsers, or PSP browsers wont be able to compute it. So by the time XHTML is the standard you will be used to typing all of your coding in lowercase letters. Why would you want to make a web site? Because its load of fun, and can be quite puzzling. Sometimes you may encounter hard times when trying to learn HTML (which I doubt, all of you seem pretty intelligent for an exception of a few of you) but don't get discouraged. Just keep trying, you'll eventually get it. HTML is rather easy to learn. Once you start server-side scripting like PHP you may wan't to cry. HTML is WYSIWYG which is "What you see is what you get." This means its almost trial and error, if you screw up you will see it on the site. PHP if you screw up nothing will happen and you will be bombarded with errors. So when you display the site on your browser you will realize something is wrong because it wont look quite right. The Beginning You can use several programs to write HTML with. You can utilize HTML editors like Dreamweaver or PHP Designer. Or you can use programs that Windows supplies you with which is Notepad. Yes, that's right, Notepad. All you need to start writing your first web site is any text editor. For Macs your program which is equivilent to Notepad is SimpleText. I tried a plethera of different HTML editors but I just love Notepad too much. First I will teach you how HTML works. .html will be used to save every single one of your HTML files. When saving your file it should not be saved as a .txt but a .html. To open one of your HTML document as just the coding just open it with Notepad. To see it as a web site open it with your browser but either right clicking on the file and clickin Open As > Your Browser. Please type the following code into Notepad: Code: <html> <head> <title> Insert Text Here </title> </head> <body> Insert Text here </body> </html>
Fonts Well, now since I have explained to you what HTML is, and what you should always have in your HTML document, I will explain to you how to editing the text you put on your site. This is pretty simple. All of this coding should be between the <body> and </body> tags. You probably already know this based on past experience or from myspace (which I hate). There is many ways to change how fonts appear. The way I am teaching you how to change font is simple. The majority of the codes will start with <font. Here is a list of some codes.
Code: <font face="Insert Font Face Here" size="Insert Number Here" color="Insert Color Here"><s><blink><b><u><i>Insert Text Here</i></u></b></blink><s></font> Code: <html> <head> <title> Mistshade's Site </title> </head> <body> <font color="blue">Welcome to Mistshade's site</font> <font color="red"> This site teaches you HTML!</font> <font size="10" color="blue"> I hope you like it!</font> <i><u>See you all later!</u></i> </body> </html> Last edited by Mistshade; 06/25/06 at 02:11 AM. |
| | |
| | #2 |
| Banjo kazooie FTW Join Date: Feb 2006 Location: the party in my pants
Posts: 1,756
Rep Power: 4 ![]() | a very good idea to construct a guide for those who need help in HTML basics a must look at |
| | |
| | #3 | |
| Iron Tomato | Quote:
This site is also great for HTML tutorials. So if there is ever something that isn't clear here, or you want to learn more, just check it out. | |
| | |
| | #4 |
| Organization Member | I will post several good sites that you can use as an HTML reference at the end of my guide. The world is quickly reverting to XHTML so I would be sure to properly nest all of your HTML codes and keep it in lowercase. An example of properly nesting is this: Properly Nested: <b><i>Properly Nested</i></b> Not Properly Nested: <b><i>Not Properly Nested</b></i> Notice how the <b> is in the very front and very back on the properly nested one? And notice how the <b> is in the front, but not the very back? A cell phone browser would get all screwed up. |
| | |
| | #5 |
| Banned | http://www.lissaexplains.com/ While it is "for kids", its the best site for those new to HTML to learn. Great writeup! |
| | |
| | #6 |
| Spy of Atlantis Join Date: Mar 2006 Location: Boston Age: 16
Posts: 3,757
Rep Power: 8 ![]() ![]() ![]() | www.w3schools.com Another site that I use for lots of things. Since you said my "Nice writeup!" was lame, I will be more blunt about it. You really only went into the basics. Unless you're going to post more threads, I suggest editing it daily with more information. The stuff you have now is really the stuff that everybody knows. I skim. Don't take this into much consideration. Last edited by Color Me Evil; 06/25/06 at 02:58 AM. |
| | |
| | #7 | |
| Organization Member | Quote:
| |
| | |
| | #8 | |
| Spy of Atlantis Join Date: Mar 2006 Location: Boston Age: 16
Posts: 3,757
Rep Power: 8 ![]() ![]() ![]() | Quote:
If that comment was supposed to fire something at me, you missed and hit my Pringles can. | |
| | |
| | #9 |
| Organization Member | Ouch, okay. Fine, I surrender you win Boondock Saint :-P. <Raised White Flag> |
| | |
| | #10 |
| Keyblade Wielder | This is very good!! Mistshade please update it!! I really need help with my HTML!!! |
| | |
| | #11 |
| This is cocaine speaking. | I'd like to point something out-- If you're looking for valid html, somewhere in your header you have to specify a DOCTYPE. Just paste the following code and you's all set. Code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
| | |
| | #12 |
| Moderator | HTML Code Tutorial, this is where I go if in doubt. |
| | |
| | #13 |
| Organization Member | this is a really good idea for those who need it! |
| | |
![]() |
| Thread Tools | |
| Display Modes | |
| |