Lesson No. 1
If you ever want to start your own website, then this article is for you. I am gone through the basics of building your website using notepad.
One thing keep in mind that, every tag that you start, must have to close.
Some Important Instructions;
1. Any text written between the TITLE tags is shown on the title bar of webpage.
2. You’re all JAVA and CSS cods are in between the HEAD tag.
3. All remaining information are written in between BODY tag.
4. H1, H2, H3, H4, H5, H6 are the heading level, bigger the number is the smaller the writing is, like H1 is for big word, H6 is for smaller word.
Following are some basics commands try to learn them, and copy and paste in NOTEPADE and save file as FileName.html OR FileName.htm (use .html or .htm whatever you prefer) and run the file.
You can edit cods and try to write your own.
<html>
<head>
<title>This is title</title>
</head>
<body>This is Body Tage
<H1> This is heading tag </H1>
<br />This is line break tag. Use to break lines
<b>This is bold line</b>
<i> This is Italic line</i>
<u> This text is underline</u>
<p> This is paragraph </p>
<hr /> This is horizontal Line. This divide page into different parts.
</body>
</html>
If you ever want to start your own website, then this article is for you. I am gone through the basics of building your website using notepad.
One thing keep in mind that, every tag that you start, must have to close.
Some Important Instructions;
1. Any text written between the TITLE tags is shown on the title bar of webpage.
2. You’re all JAVA and CSS cods are in between the HEAD tag.
3. All remaining information are written in between BODY tag.
4. H1, H2, H3, H4, H5, H6 are the heading level, bigger the number is the smaller the writing is, like H1 is for big word, H6 is for smaller word.
Following are some basics commands try to learn them, and copy and paste in NOTEPADE and save file as FileName.html OR FileName.htm (use .html or .htm whatever you prefer) and run the file.
You can edit cods and try to write your own.
<html>
<head>
<title>This is title</title>
</head>
<body>This is Body Tage
<H1> This is heading tag </H1>
<br />This is line break tag. Use to break lines
<b>This is bold line</b>
<i> This is Italic line</i>
<u> This text is underline</u>
<p> This is paragraph </p>
<hr /> This is horizontal Line. This divide page into different parts.
</body>
</html>
0 comments:
Post a Comment