[PART 3] Beginner Tutorial
Page 1 of 1
[PART 3] Beginner Tutorial
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 Tutorial. The new tags were: <head>, <title>, <h2>, and <p>.
HTML Code in Question:
<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!
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 Tutorial. The new tags were: <head>, <title>, <h2>, and <p>.
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>
<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!
DONE
mitha- Gallery Moderator
- Posts : 42
Credits : 1113
Fame : 17
Join date : 2012-06-23
Age : 30
Similar topics
» [PART 2] Beginner Tutorial
» [PART 1] Beginner Tutorial
» [PHP TUT PART 2] PHP Variables
» [PHP TUT. PART 1] Basic PHP Syntax
» Tanging Hiling part 2
» [PART 1] Beginner Tutorial
» [PHP TUT PART 2] PHP Variables
» [PHP TUT. PART 1] Basic PHP Syntax
» Tanging Hiling part 2
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum