Newbie Spellweaver
- Joined
- Mar 4, 2004
- Messages
- 22
- Reaction score
- 0
-First Website Guide:
1.Intro:
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.
2.Preparation:
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. Remember where it was saved to because you will need to open this file, soon!
3.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:
Internet Explorer
FireFox
Opera
Netscape Navigator
4.Viewing 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.
1.In the new browser window, select File then Open
2.Then click Browse to enter Windows Explorer
3.Do you remember where you file is? Good, then navigate to its location
4.When you find your file, index.html, double-click the file to open it inside your web browser
Success! You have just viewed your very first webpage.
5.First WebPage - Review:
Very good! Now let's be sure that you remember what you learned in this lesson.
1.how to copy some weird looking text (HTML) into notepad
2.how to correctly save this weird text in notepad
3.how to open your saved file and view the your webpage
-First HTML Tags:
1.Your Second WebPage - Review:
Now that you have created your first webpage, let us examine the different segments of your "index.html" file. You have probably noticed a pattern of various words that are surrounded with < and >. These items are called HTML tags.
An example of an html tag is <body>. The Body tag tells the browser where the page's content begins. Body is also an example of one of the required HTML tags that every web page must have.
2.Basic HTML Tag Info:
Let's learn more about these tags. A basic web page is composed of 2 main tags. If you create a web page without these tags you will be in trouble!
HTML Code:
The first HTML tag, which conviently is labled <html> tells the browser that your HTML code is starting. The second HTML tag, <body> tells the browser that the visible part of the webpage ( your content ) is going to start.
3.Closing Tags - </tag>:
You might be wondering what is the deal with the two tags at the end, </body> and </html>. These tags are telling the browser that certain tags are ending. The </body> lets the browser know that your content is ending, while the </html> tells the browser that your HTML file is finished.
The "/" that is placed before the tag's name informs the browser that you would like to stop using the specified tag. <tag> is used to begin a tag and </tag> is used to end a tag.
4.HTML Tag Order - Important!:
The order that opening tags appear and ending tags appear follow an important rule. If an HTML tag is opened within another, for example the body tag is opened inside the html tag, then that tag(body) must close before the outter(html) tag is closed.
We ended the body tag first because it was opened most recently. This rule of "closing the most recent tag before closing older tags" applies to all HTML tags.
5.Continue Along:
These ideas might take a while to sink in, so how about you create your second web page? Copy this code into notepad, like you did before, following the same directions.
HTML Code:
After you are sure that your HTML code inside notepad is exactly the same as our provided HTML code, go ahead and save your file. You should be saving this file as "index.html". You may be prompted that you will be saving over a file, that is OK, you do not need your 1st web page anymore. When you are done, please continue.
-Conclusion & Review:
A few new tags were introduced in the last lesson. We will now give you a definition of these new tags to get you ready for starting the real HTML. The new tags were: <head>, <title>, <h2>, and <p>.
The HTML Code in Question:
Tags:
<head>
This comes immediately following <html> and is used to tell the browser useful information, such as: the title of your page, the topic of your webpage ( used on old search engines ) and more.
<title>
This tag must comes between <head> & </head> and will label the web browser's title bar, which is located in the top left of most browsers. In the previous example, we titled the page "My Own Webpage!" and that text would show up as the browser's title.
<h2>
This is a header tag. It will create a "header" that is much larger than the default font size. The "h2" means that it is the 2nd largest header. The largest header is "h1" and the smallest header is "h6". Headers should be used for titles, just like the ones you see on this page.
<p>
This is a paragraph tag. So when you're writing a paragraph make sure you place <p> at the beginning of the paragraph and </p> at the end!
TIZAG.com RESOURCE
POST YOUR PROJECTS HERE
1.Intro:
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.
2.Preparation:
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:
Code:
<html>
<head>
</head>
<body>
<h2>My first webpage!</h2>
</body>
</html>
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. Remember where it was saved to because you will need to open this file, soon!
3.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:
Internet Explorer
FireFox
Opera
Netscape Navigator
4.Viewing 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.
1.In the new browser window, select File then Open
2.Then click Browse to enter Windows Explorer
3.Do you remember where you file is? Good, then navigate to its location
4.When you find your file, index.html, double-click the file to open it inside your web browser
Success! You have just viewed your very first webpage.
5.First WebPage - Review:
Very good! Now let's be sure that you remember what you learned in this lesson.
1.how to copy some weird looking text (HTML) into notepad
2.how to correctly save this weird text in notepad
3.how to open your saved file and view the your webpage
-First HTML Tags:
1.Your Second WebPage - Review:
Now that you have created your first webpage, let us examine the different segments of your "index.html" file. You have probably noticed a pattern of various words that are surrounded with < and >. These items are called HTML tags.
An example of an html tag is <body>. The Body tag tells the browser where the page's content begins. Body is also an example of one of the required HTML tags that every web page must have.
2.Basic HTML Tag Info:
Let's learn more about these tags. A basic web page is composed of 2 main tags. If you create a web page without these tags you will be in trouble!
HTML Code:
Code:
<html>
<body>
Your site's content goes here
</body>
</html>
The first HTML tag, which conviently is labled <html> tells the browser that your HTML code is starting. The second HTML tag, <body> tells the browser that the visible part of the webpage ( your content ) is going to start.
3.Closing Tags - </tag>:
You might be wondering what is the deal with the two tags at the end, </body> and </html>. These tags are telling the browser that certain tags are ending. The </body> lets the browser know that your content is ending, while the </html> tells the browser that your HTML file is finished.
The "/" that is placed before the tag's name informs the browser that you would like to stop using the specified tag. <tag> is used to begin a tag and </tag> is used to end a tag.
4.HTML Tag Order - Important!:
The order that opening tags appear and ending tags appear follow an important rule. If an HTML tag is opened within another, for example the body tag is opened inside the html tag, then that tag(body) must close before the outter(html) tag is closed.
We ended the body tag first because it was opened most recently. This rule of "closing the most recent tag before closing older tags" applies to all HTML tags.
5.Continue Along:
These ideas might take a while to sink in, so how about you create your second web page? Copy this code into notepad, like you did before, following the same directions.
HTML Code:
Code:
<html>
<head>
<title>My Own Webpage!</title>
</head>
<body>
<h2>Welcome to my webpage</h2>
<p>Coming soon will be my completed webpage that will wow and impress you!</p>
</body>
</html>
After you are sure that your HTML code inside notepad is exactly the same as our provided HTML code, go ahead and save your file. You should be saving this file as "index.html". You may be prompted that you will be saving over a file, that is OK, you do not need your 1st web page anymore. When you are done, please continue.
-Conclusion & Review:
A few new tags were introduced in the last lesson. We will now give you a definition of these new tags to get you ready for starting the real HTML. The new tags were: <head>, <title>, <h2>, and <p>.
The HTML Code in Question:
Code:
<html>
<head>
<title>My Own Webpage!</title>
</head>
<body>
<h2>Welcome to my webpage</h2>
<p>Coming soon will be my completed webpage that will wow and impress you!</p>
</body>
</html>
Tags:
<head>
This comes immediately following <html> and is used to tell the browser useful information, such as: the title of your page, the topic of your webpage ( used on old search engines ) and more.
<title>
This tag must comes between <head> & </head> and will label the web browser's title bar, which is located in the top left of most browsers. In the previous example, we titled the page "My Own Webpage!" and that text would show up as the browser's title.
<h2>
This is a header tag. It will create a "header" that is much larger than the default font size. The "h2" means that it is the 2nd largest header. The largest header is "h1" and the smallest header is "h6". Headers should be used for titles, just like the ones you see on this page.
<p>
This is a paragraph tag. So when you're writing a paragraph make sure you place <p> at the beginning of the paragraph and </p> at the end!
TIZAG.com RESOURCE
POST YOUR PROJECTS HERE
