Saturday, September 9, 2023

HTML NOTES

 Html


What is Html ?

HTML (Hypertext Markup Language) is the set of makeup symbols or codes inserted in a file intended for display on a world wide web browser page. The markup tells the web browser how to display a web page’s words and image for the user’s.


What is on Html tag ?

⇛ Html are the hidden keywords within a web page that define how the browser must format and display the content. Most tags must have two parts, an opening and a closing part. For Example , <html> is the opening tag and </html> is the closing tag.


⇛Hypertext is simply a piece of text that works as a link.

⇛Markup language is a way of writing layout information within documents.


Notepad


⇛Notepad is a simple text editor program which is used to write notes about something.


How to start Notepad ?

↪ Click on start Button

↪ Click on Program 

↪ Click on Accessories

↪ Click on Notepad.


Tags For Html


  1.  <Html>..........</Html>

⇛ It tells the browser how to read the documents.


  1.  <Head>..........</Head>

⇛This tag contains the title of the page which is seen at the title bar of the browser.


  1.  <Title>..........</Title>

⇛ It contains the title of the documents. It is used inside the head tag.


  1.  <Body>..........</Body>

⇛It contains the body of the document where we place text.


  1.  <Br>..tag...LineBreak.....

⇛ This tag is used to break the line. This is an unpaired tag.


  1.  <P>..........</P>

⇛This is used to giving Paragraph break.

Attribute ➖

↪ Align


  1. <Pre>..........</Pre>

⇛This tag is used to display the text in similar manner type on Notepad.


  1. <Centre>..........</Centre>

⇛This tag is used to Shift the text or Paragraph at the Centre.


  1. <U>..........</U>

⇛This tag is used to Underline.


  1. <B>..........</B>

⇛This tag is used to make the text Bold.


  1. <i>..........</i>

⇛This tag is used to display the text italic Face.


  1. <Blockquote>..........</Blockquote>

⇛This tag is used to giving indent.


  1. <H1>..........</H1>

⇛This tag is used for display the text in different size.

   <H1> is the biggest font and <H6> is Smallest font. 


  1. <Hr>..........</Hr>

⇛This tag is used to draw horizontal line.

   This is an unpaired tag.

 Attribute ➖

  • unchecked

    Aglin 

  • unchecked

    Size

  • unchecked

    Width in pixel just as “800”

  • unchecked

    Colour


  1. <Marque>..........</Marque>

⇛This tag is used to display the scrolling.

   Attribute ➖

  • unchecked

      Behaviour (Just as ➖ Alternate,

  • Scroll, Slide)

  • unchecked

     Bgcolor

  • unchecked

     Direction (Just as ➖ Left, Right, Up, Down) 


  1. <Font>..........</Font>

⇛Attribute ➖

  • unchecked

    Size :- 1 to 7 where 1 is smallest , 7 is biggest and 3 is default

  • unchecked

    Colour :- Font Colour

  • unchecked

    Font :- Font Name


  1. <ol>..........</ol>

⇛It is used for numbering its helping tag is <li>


  1. <ul>..........</ul> (Unordering List)

⇛It is used for Bulletin.


  1. <img>..........</img>

⇛It is used to insert image.

  • unchecked

    Size =  (With, Height in pixel)

  • unchecked

    SRC = (Define the picture)

  • unchecked

    Align = (Position for picture)

  • unchecked

    Alt    = (Comment for Picture)


  1. <Sup>..........</Sup>

⇛It is used to display the text in Superscript Format 

(e.g - a2+b2)


  1. <Sub>..........</Sub>

⇛It is used to display the text on Subscript Format 

(e.g - H2O)


  1. <Table>..........</Table>

⇛It is used to create table on web page. Inside the tag no.


  1. <Tr>..........</Tr>

⇛This tag is used to Create a row.


  1. <Th>..........</Th>

⇛This tag is used for defining the heading of a Table.


  1. <Td>..........</Td>

⇛ This tag is used to insert the data inside the Table.


Attribute of Table


⇛Border ➖ This is used to specified border

around the Table


⇛Width  ➖ This is used to specified the

width of a Table


⇛Align  ➖ This is used to align Table.


⇛Bgcolor  ➖ This is used to set the BAckground

color of Table.


⇛Bordercolor  ➖ This is used to define the color

of border of Table.


⇛Cellspacing  ➖ This is used to increase the size of cell.


⇛Cellpadding  ➖ This is used to decrease the size of cell.


⇛Rowspan  ➖ This is used to merge

the row of TAble.


⇛Clospan  ➖ This is used to merge the column of table.


Tuesday, September 5, 2023

Excel formula trick

 Excel Formula Creations

 


Sum =Sum(A1:A9)

Subtract =A2-A1

Multiply =A2*A3*A4

Percentage =A9/800*100

Count =Count(A1:A9)

Average = Average(c2:n2)

Min =min(c2:n2)

Max =max(c2:n2)

Rank =rank(p2,$p$2:$j$12,0  or 10)

press F4 to Lock 

G.P.A =(t2/600)*150


Division

=if(i2>=90,”Distinction”,if(i2>=60,

”First Division”,if(i2>=50,”Second

Division”,if(i2>=40,”Third Division”,”Fail/Pass”))))


=if(i2>=90,”Distinction”,if(i2>=60,

”First Division”,if(i2>=50,”Second

Division”,”Third Division”)))

Grade


=If(i2>=90,”A+”,If(i2>=80,”A”,If(i2>=70,”B+”,

If(i2>=60,”B”,If(i2>=50,”C+”,If(i2>=40,”C”,

If(i2>=35,”D+”,”NG”)))))))


Pass/Fail


=if(countif(c2:g2,”>=33”)=5,”Pass”,

if(c2:g2,”<=33”)=3,

”Fail”,”Compartment”


=if min(d4:d7)>=35,”pass”,”fail”

 


 







COMPUTER OPERATOR HELPFUL NOTES HTML NOTES

  HTML   HTML stand for Hyper Text Mark up Language. It is the language used for creating webpage. To write   the HTML codes we can use ...