How we can give font styling css and html?

 <!DOCTYPE html>

<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewportcontent="width=device-width, initial-scale=1.0" />
    <title>Fonts of the Typing</title>
    <style>
      /* first of all we disscuss about the font family which may be of the onr or more than one type and this styling family may be for the one line or may be more than one line and this family of the two types web desighning or allready defined in the web and some are others that are not defines in the family we will defined it by the written its source type may  e friom the google or any othder site this is undefined font syles */
      /* pixel is the 1 / 96 of the 1 inch */
      p {
        font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
          "Lucida Sans Unicode", Ge;
      }
      /* font has many properties which can be applied on the font at different levels like font used for the italic and other like icon etcfont wieght is used for the bold and like these properties and next is the font hight and also many others properties of the fonts  */
      
      .style {
        color: burlywood;
        font-weight: bolder;
        font :italic;
      

      }
    </style>
  </head>
  <body>
    <!-- fonts have many designs and these are applied by the css also it has hight style font family etc -->
    <h3>Fonts style and designing</h3>
    <p>
      Lorem ipsum dolor sit, amet consectetur adipisicing elit. Magnam alias
      autem deleniti quasi aut? Voluptas nisi molestias odio consequatur quis
      ipsa iusto nam repudiandae fuga impedit esse incidunt aut rerum earum,
      laboriosam repellat. Aperiam, oluptatibus Lorem ipsum, dolor sit amet
      consectetur adipisicing elit. Minima omnis consequuntur eligendi, facilis
      voluptatibus sint, tenetur adipisci soluta dicta accusantium molestias
      dolorem incidunt officiis veritatis recusandae repellat nemo odit
      distinctio necessitatibus corrupti minus harum unde praesentium. Pariatur,
      itaque mollitia.
    </p>
    <p class="style">
      here is a class of the paragraph in which we show of the styles of the
      fonts
    </p>
  </body>
</html>

Post a Comment

Let us Know...!

Previous Post Next Post