Saturday, 25 March 2017

PAGE 3

PAGE 3
Paragraph, Line Breaks and Horizontal Line
Tag
Attribute
Function
<p>

Paragraph tag to mark the beginning of a new paragraph.
<BR>

To Create a line break without inserting any extra space between the line
<HR>
SIZE,WIDTH
To insert a horizontal line. This tag takes several optional attributes. For example <HR SIZE=”4” WIDTH=”50%”>

Example Code (Follow the Figure 1.2) :
<HTML>
<HEAD>
<TITLE> Indian Classical Music</TITLE>
</HEAD>
</BODY>
The Ragas of Indian classical Music.
Embody the music of the elements.
<HR>
<P> Ragas have permeated Indian sculpture and painting <BR> encapsulating the grace and richness of our culture
Heritage. </P>
<P> Each raga has its own mood and melody </P>
</BODY>
</html>
Shown in google chrome:



Friday, 24 March 2017

PAGE 2 Of HTML



PAGE 2

How to create pages with HTML
it is necessary that the pages you create with HTML will be
plain text, so that every browser can recognize the tags and
interpret them properly. That’s  why you always use any text
editor like Windows Notepad (shown In figure 1.1) or MSDOS Edit etc. and the document is saved with an extension “.htm” or “.html” . although you may create your Web pages using several Web tools such as Front page Express and Macromedia Dream Weaver etc.



Figure 1.1 

HTML  Elements, Tags and Attributes
A web page is made up of elements, Which is defined by an HTML code or tags. A tag is generally a HTML command, Which should look like <HTML> always enclosed with angel brackets, and most tags come in pairs, opening and closing.. The closing tag is similar as the opening tag but it starts with a forward slash “/”.


Example:  
                  <BODY> my web page !! </BODY>

                   (opening tag)                     (closing tag)
An atribute is usally a keyword that takes one of several possible values, some tags have optional or required attributes.

       Example:
                   <H1 ALIGN="LEFT"> Attribute Testing </H1>

                        (Alignment Attribute)


Thursday, 23 March 2017

Learn HTML in 10 Days




1st STEP What is HTML

INTRODUCTION
As you are already aware about INTERNET and its utilities – Browsing the web sites is now a ‘childs play’ for you. Internet and HTML both are co-releated, when you browse any web page and that web page is having some text, graphical pictures is visualized in front of you with sound, color and animation effects. Do you know what the web pages are made up off? The answer is HTML. If you ever clicked through your mouse on the view-> source menu then you may find a screen appear in front of you and some codes are written there, and that is the HTML code.

Before you begin creating your own web pages with HTML, you need a little knowledge about web pages. What exactly is a web page? By 1993 some computers throughout the world were equipped to serve up HTML pages, those interlinked pages were dubbed throughout the world wide web (WWW) and several web browser programs had been written to allow people to view web pages. The world’s most popular Web browser are Netscape Navigation and Microsoft Internet Explorer.

The term HTML stands for Hyper Text Markup Language . It is use for describing how pages of text, graphics and information are organized, formatted and linked together. HTML pages are the standard interface to the Internet.

Origin Of HTML
HTML is not an invention but is an improved version of Standard Generalized Markup Language (SGML). Tim Berners-Lee at cem designed the original HTML document type in 1990.

The following Simple HTML code Will produce the page shown in Internet Explorer

<HTML>
<HEAD>
<TITLE> this is test WEB page </TITLE>
</HEAD>
<BODY>
My First Web Page
</BODY>
</HTML>


The Output Like this - 

<HTML> this is the first tag you must be write when you create a HTML file this tag open like 
this <HTML> and close like this </HTML> .
<HEAD> tag use for styling background and other many things now i show u how to use this tag.
<HEAD> tag also like <HTML> tag you open this tag like this <HEAD> and close like this </HEAD>.
<TITLE> this tag use for name your WEBSITE title like this you have to give the <TITLE> tag under <HEAD> tag. then open like this <TITLE> and close like this </TITLE>

Then open <BODY> tag for creating the body of your website.. 
open tag like this <BODY> close tag like this </BODY>
Under the <BODY> tag u give your contents next time i will show that how to do that..
and many more TAG.. 
I HOPE YOU LIKE THIS

PLS KEEP SUPPORTING ME AND I WILL GIVE YOU MY BEST

THANK YOU 

AND SEE YOU GUYS NEXT TIME

PAGE 3

PAGE 3 Paragraph, Line Breaks and Horizontal Line Tag Attribute Function <p> ...