How To HTML Code For Dummies
77HTML
HTML coding is a must when it comes to creating web pages online.
HTML can be simple to learn. This guide will teach you some of the basic HTML coding that will help you create your first web page!
To Start A Web Page
The HTML code of a web page starts like this:
<HTML>
<HEAD>
<TITLE>
</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
Type your HTML code in your computers text writing program such as notepad(PC) or textedit(MAC). You should save the file on your computer as "title".html
Always remember to put the ".html" at the end!
If you are using a MAC you will need to make sure that you are typing your code as "plain text." Click "format" and then "make plain text."
After you have saved your web page you can open it with your web browser, such as Safari or Internet Explorer. I like to open my page every time I change something to make sure it's coming out as planned!
Title
The <TITLE> is the line of words that you see at the very top of your web browser.
Your <TITLE> should be short and descriptive of your page.
Body
The <BODY> portion of your code is where you put everything that will be contained on your web page such as; text, images, videos, and more!
You can also use the <BODY> to change the background of your web page but I'll save that for another hub!
To add text to your web page simply type the text after the <BODY> tag. The </BODY> tag ends the web page, so be sure that everything is between those two tags!
TheĀ possibilitiesĀ are endless when it comes to customizing your web page, but I'll save most of that for another hub as well. This one is just for the basics!
Start typing the text of your page and save the file and open with your browser to see how it looks!
Sample Web Page
Here is a sample web page, called Dingy's Website, for you to copy and save on your computer. Use this as your test page. Make changes and see how they look with your browser!
<HTML>
<HEAD>
<TITLE>
Dingy's Website
</TITLE>
</HEAD>
<BODY>
Hello, welcome to my web page. This is a sample website that I made for you to change!
</BODY>
</HTML>
Done
Now you should know some of the basics to making a website. Try it out see how you like it! Remember your web page can only be viewed on your computer! It is not "online" unless you purchase a web domain and upload your page.
Good luck, and watch for more hubs on HTML coding!
Next Lesson
Here's my next hub on HTML coding.
PrintShare it! — Rate it: up down flag this hub
Comments
Hello Jen
I've put together a hub which has the same information as this one, but I have it written it in a style as if you were 5 years old... Maybe my hub can help you? It's called 'My first webpage'
(http://hubpages.com/_cym/hub/my-first-webpage)
By the way, 5 years old kids usually learn very fast ;-) They need the explanation in a very different way than adults do. My hub is for adults who just don't understand how to get started putting their first HTML page together... I really hope my hub can help you. And after that you can continue with the lessons here, which Ding.A.Ling123 has put together.










Jen's Solitude says:
8 months ago
I hope I can study this and actually do it. I would love to understand HTML better. I wish someone could talk to me like I'm 5 years old, maybe then I could get it. :D Thanks for the hub.