Saturday, 27 June 2020

Attribute In HTML

What are Attribute ?

Attributes are use to give more information about Html Tags.

 Attributes are written inside the html tag.
Attributes is Written at the Starting of the tag.
it Never be written at end of the tag.

Tag can be content one or more attribute.

Attributes are composed of name and value. the structure of attribute look like attributename="value"
You can also use the single quotation.

 There is only <title> attribute that doesn't work in mobile it only work in pc.
Eg:-
Code:-
Output:-
In above example there are two attributes are used inside the <p> tag .
Frist is style attribute and second is color attribute.

Friday, 26 June 2020

Text Formatting Tags

Text Formatting tag is used to display some special type of text.

1. Bold Text Tag  :-
Tag denoted by <b> it is use to display the Text in bold. it is similar to strong tag <strong>

2. Italic Text Tag :-
  tag is denoted by <i>  it is use to display text in italicized. It is similar to emphasize Tag <emp>.

3. inserted Text Tag :-
Tag is denoted by <ins>. It is used to the new inserted text in document.

4.Underline Text Tag :-
Tag is denoted by <u> it is use to Underline important Text. Is similar to Inserted tag

5. Deleted Text Tag :-
Tag is denoted by <del>.It is use to show the Deleted text in documents. It is similar to strike text Tag <strike>.

6. Monospaced Text Tag :- Tag is denoted by  <tt>. Monospaced tag is use to text in same width.

7. Superscript Text Tag :-
It is denoted by <sup>. It is appear half a character above the normal line. It is rendered in smaller text.

8. Subscript Text Tag :-
It is denoted by <sub>. It is appear half a character below the normal line. It is rendered in smaller text.

9. Large Text tag :-
It is denoted by <big>. Any thing is written between that Tag is display one font size larger than the rest of the text.

10. Small Text tag :-
It is denoted by <small>. Any thing is written between that Tag is display one font size  smaller than the rest of the text.

11. Mark Text tag :-
It is denoted by <mark>. It is used to Highlight the text in document.

Code:-

<!DOCTYPE html>
<html>
    <head>
        <title>Text Formatting Tags</title>
    </head>
    <body>
        <p> Code is For text formatting tag<br>
        <p>1.Bold Tag 
        (Hii <b>User</b> How are you ?)</p>
        
        <p>2.Italic Tag 
        (Hii <i>User</i> How are you ?)</p>
        
        <p>3.Insert Tag
        (Hii <ins>User</ins> How are you ?)</p>
       
        <p>4.Underline Tag
        (Hii <u>User</u> How are you ?)</p>
       
        <p>5.Delet Tag
        (Hii <del>User</del> How are you ? )</p>
     
        <p>6.Monospaced Tag
        (Hii <tt>User</tt> How are you ?)</p>
       
        <p>7.Superscript Tag
        (Hii <sup>User</sup> How are you ?)</p>
       
        <p>8.Subscript Tag
        (Hii <sub>User</sub> How are you ?)</p>
       
        <p>9.Large Tag
        (Hii <big>User</big> How are you ?)</p>
      
        <p>10.Small Tag
        (Hii <small>User</small> How are you ? )</p>
       
         <p>11.Mark Tag 
        (Hii <mark>User</mark> How are you ?)</p>
        
   </body>
</html>

Output:-

If You Like This Blog 

Comment And Share The Blog

Saturday, 20 June 2020

Basic Tag #6

6.Preserve Formatting Tag <pre>:-
Anything is written between <pre> tag will display as it is Written in Html document without disturbing the sequence of that text such as space,comma,fullstop etc
Eg:-
Code:-
Output:-

Basic Tag #5

5.Centering Content Tag <center>:-
This tag is used to put content in center of Html document/webpage
Eg:-
Code:-
output:-

Basic Tag #4

4.Horizontal  Line <hr> Tag:-
Horizontal line tag is used to break document / page and create horizontal line from current position to right margin.
Eg:-
Code:-
output:-


Basic Tag #3

3.Line Break Tag<br>:-
The Break line Code is use to break the line in code. It is placed after any line. The <br> tag is empty elements  means it does not have closing end.
Eg:-
Code:-
Output:-

Basic Tag #2

2.Paragraph Tag <p>:-
The <p> tag is used to struct your text into paragraph and each paragraph is written between <p>•••••••••••</p>.
Eg:- 
Code:-
Output:-

Basic Tags #1

Basic Tags

1.Heading Tags :- every webpage or a document starts with heading.In HTML we can use six type different size of headings . (<h1>,<h2><h3><h4><h5><h6>) 
Eg:- 

Code:-
OUTPUT:-


Tags

What are Tags?
HTML tags are the keywords enclosed between angular brackets <tagname>.
Tag has opening and closing such as 
Opening <tagname> 
Closing  </tagname> some tags has only opening but they don't have closing 
For example :- <br> Tag.

                

Thursday, 18 June 2020

Structure Of HTML Page.

Structure Of HTML PAGE

All The HTML Elements Are Written Between Html Tag <html>.

Head Tag <head> is Used To write About Data Which Is written Between HTML Tag.

Title Tag <title> Is Used Give Title Of Html Page Which Is Display In Toolbar Of Browser.
Body Tag <body>  Use To Write The Main Content Of Html document 


Wednesday, 17 June 2020

HTML


What is HTML ?

Hyper Text Markup language it is a standard Markup Language.
HTML language is Developed  by Tim Berners-Lee in 1990

This language is used To create page,website etc 
All the pages are connected in series called Hyperlinks.
HTML allows Images and others object to create interactive webpage or forms.
Version of HTML.
Currently we are Using HTML 5.

Hii...

Hiii,
My self Sayyed Akib
I am starting Blogs Regarding To All programming Language and web Development series

HTML List