Monday, December 29, 2008

Welcome to the code tutorial. You will find all the web building tutorials. This is designed to teach beginner web programmers how to use HTML, CSS, PHP, JavaScript, XML.
Its contents are
A Begineers Tutorial- For those just starting to learn to make web pages.
HTML Tutorial - Begin your web designing with a solid background in HTML.
CSS Tutorial - Check out the latest web design techniques available to you.
PHP Tutorial - Server-side scripting language for creating dynamic and interactive websites.
JAVASCRIPT Tutorial - To improve the design, validate forms, detect browsers, create cookies, and much more.
A Beginners Tutorial:
This short tutorial is aimed to give newbies a little experience in writing HTML code, saving their files correctly, and viewing the completed works in a web browser. Regrettably this tutorial cannot teach you the basics of using a computer, so please be sure that you meet the following requirements:
1. Know what notepad is and how to use it.
2. Are able to open up a file using Internet Explorer (or the browser of your choice).
3. Know how to copy and paste text from a webpage (important!).
Overview:
In this tutorial you will be transcribing code into notepad and then viewing it with a web browser. The code is called HTML (Hyper Text Markup Language) and notepad is a commonly used text editor on Window PCs. HTML may seem confusing at first, but we will help you understand how it works in this step-by-step tutorial of how to make your first web page.
To start off with copy the following HTML code into notepad. Be sure to copy the code exactly, otherwise your web page may not function correctly.
HTML Code:
The above code is all that is required to create a basic web page! Now save your file in notepad by selecting Menu and then Save. Click on the Save as Type drop down box and select the option All Files. When asked to name your file, type "index.html", without the quotes. Double check that you did everything correctly and then press save.
Viewing Your Web Page - Web Browsers:
To view your web page, you are going to have to use a web browser (of course). Web browsers are programs that interpret HTML, like what you have just copied into notepad, and transform that code into a visual representation, or a web page. Common web browsers include:
1. Internet Explorer
2. Firefox
Viewing your page:
To view your web page, you must open the "index.html" file inside of a web browser. Open up another browser window and then follow these instruction.
In the new browser window, select File then Open
Then click Browse to enter Windows Explorer
Do you remember where you file is? Good, then navigate to its location
When you find your file, index.html, double-click the file to open it inside your web browser.
You have just viewed your very first webpage.
HTML Tutorial:
HTML is a language for describing web pages.
1. HTML stands for Hyper Text Markup Language.
2. HTML is not a programming language, it is a markup language.
3. A markup language is a set of markup tags.
4. HTML uses markup tags to describe web pages.
HTML Tags:
HTML markup tags are usually called HTML tags.
1. HTML tags are keywords surrounded by angle brackets like html.
2. HTML tags normally come in pairs like b and b .
3. The first tag in a pair is the start tag, the second tag is the end tag.
4. Start and end tags are also called opening tags and closing tags.

No comments:

Post a Comment