Skip to main content

WHAT IS CSS?ADVANTAGES, SYNTAX.

 CSS PROGRAMMING LANGAUGE                                                                     disadvantages CSS full form is cascade style sheets , which we call it says about how you should display the HTML elements on the screen. CSS tells us the style of the webpage let us take a simple example, if we build a home first we lay out the design that is known as the HTML language. Where the CSS means layout which means giving instructions on how the furniture should be nothing but the CSS. For example if we take PayPal we can see that the background color blue says the CSS background-color property. Netflix is also the best way of saying  CSS property, but if we remove it will be a normal webpage but with the red color and the black plus symbols it looks like the best webpage. Versions of CSS There are differen...

HTML FORMATTING ELEMENTS?DELETE, BOLD.

 HTML FORMATTING ELEMENTS

                                                               
formatting elements
bold




  • There are different formatting elements in HTML there are bold, delete, italic, emphasize, and make smaller this will add a new feature to the web page that you are creating.
  • The formatting elements are designed to display the text on the monitor there are so many syntax for bold which is <b> and italic with <em>.
  • So what we say to be the HTML element means that starts with the open tag, and closes with the ending tag.
  • Why formatting elements are important in HTML because it makes our web page look attractive to the audience.
BOLD THE TEXT
  • As we know that how important is bolding the text when something you want to highlight at that time can make use of bold elements and make it look audience attractive.
  • We denote the bold tag with  open tag <b> and close tag </b>.
<html>
<body>

<p>This text is normal.</p>

<p><b>This text </b></p>

</body>
</html>
  • In the above code as we can see that started with an open tag of the HTML element, then the body within it we wrote the paragraph tag inside of that we used the bold tag to make this text.

ITALIC 

  • If you want to make the text italic in a slanting manner then you can make use of this italic tag.
  • We write this by opening tag<i> and then close tag</i>
<html>
<body>

<p>This text is normal.</p>

<p><i>hi</i></p>

</body>
</html>
  • The italic tag we used in between the paragraph tag to look his italic.

SMALLER TEXT

  • Do you want to make text appear smaller on your web page for that use the element small.
  • In HTML we use it as <small> and </small> this is the keyword that we write in HTML.
<html>
<body>

<p>This is some normal text.</p>
<p><small>hello</small></p>

</body>
</html>
  • In order to make the text look smaller place the keyword in between the paragraph tag to look in smaller size.

MARK 

  • When you want to mark something that is important in a book we use highlighter in a similar way to color anything in an HTML web page we use mark element <mark>good</mark>.
<html>
<body>

<p>tomorrow <mark>test</mark> is there</p>

</body>
</html>
  • The mark is used in order to highlight the sentence or word for the important terms or points.

DELETE

  • If You have written something want to delete it can automatically remove it by using this element <del> t</del>
<html>
<body>

<p>dress colour is <del>green</del>blue</p>

</body>
</html>
  • If you want to delete any line from your code then you can use the this syntax.

INSERT

  • This is the option we can underline the text which we have typed in the html web page <ins>color</ins>
<html>
<body>

<p>my bag is <del>filled</del> <ins>choclates</ins>.</p>

</body>
</html>
  • Then suppose if you just want to insert something into your code then you make use of this concept.

SUBSCRIPT
  • When you want to write formulas of chemistry like h20 in that 2  should come down for that purpose we use it <sub>  </sub>
<html>
<body>

<p>is  <sub>h20</sub>chemical</p>

</body>
</html>
  • Express the chemistry elements then use the subscript keyword.

SUPERSCRIPT
  • When want to make the text appear above the normal that's why we use it <sup>  </sup>.
<html>
<body>

<p>who<sup>is</sup> he.</p>

</body>
</html>

PRACTISE
  • Give extra importance to the text India is given below.
        hi hello everyone I am from<b> India</b>.
  • Italic all the lines in the below paragraph.
         <i> minimum 60 percent of marks each in physics and maths at 10+2</i>.
  • Mark the word every day in the sentence.
        exercise is good for health if we do it <mark> every day </mark>.
  • Use subscripts and write the oxygen formula (02).
          Oxygen is the o<sub>2</sub>main thing for life.

          


Comments

Popular posts from this blog

WHAT IS HTML?HEADING TAGS

 WHAT IS HTML?                                                                 HTML  stands for hypertext markup language this is the full form of HTML. HTML is an important markup language for creating web pages. If we see any website then click the link we go to another page which is known as the web page,           combination of these web pages is known as a websit e . It is known by the name html because it is used to make the content in it more presentable. The first line of any html code is <!doctype> which is the most important step we could say. Tin Berners Lee has created the HTML programming language, and version 4.0 has become the most popular one. BASIC PROGRAM IN HTML <html> <head> <title>page title</title> <body> <h1>hi</h1> </bod...

WHAT IS CSS?ADVANTAGES, SYNTAX.

 CSS PROGRAMMING LANGAUGE                                                                     disadvantages CSS full form is cascade style sheets , which we call it says about how you should display the HTML elements on the screen. CSS tells us the style of the webpage let us take a simple example, if we build a home first we lay out the design that is known as the HTML language. Where the CSS means layout which means giving instructions on how the furniture should be nothing but the CSS. For example if we take PayPal we can see that the background color blue says the CSS background-color property. Netflix is also the best way of saying  CSS property, but if we remove it will be a normal webpage but with the red color and the black plus symbols it looks like the best webpage. Versions of CSS There are differen...

HTML STYLES?FONT SIZE,BACKGROUND COLOUR

 HTML STYLES                                                                  background colour In HTML  have different styles like background color, font size, text color, and text alignment in this blog we are going to study different HTML styles. HTML styles that are used to change or else change whatever existing HTML tags. We have different types of styles internal styling, which is nothing but using this inside the html element. Internal means utilizing it in the head section of the HTML code, external is to apply it externally to the CSS file. BACKGROUND COLOUR We will use background color as a style in HTML for webpages to give color to the web pages of different colors like blue, red, black, etc. and there will be a syntax for giving background color. <body style="background-color: green;"> This is...