CSS - Universal Selector in CSS

In this video, I explained Universal Selector in CSS. Feel free to comment. For more, please subscribe and press the BELL icon. Please visit the YouTube CSS Playlist. Please link, comment, share and subscribe. The code is as follows -

HTML File - 

<html>
  <head>
     <title> Universal Selector </title>
<!-- Universal Selector -->
<link rel="stylesheet" href="universal.css">
       <style>
     * {
   font-size: 25px;
}
 
   </style>
</head>

  <body>
     <p> This is the paragraph tag </p>
<h1> This is the heading tag </h1>
<b> This is bold tag </b>
<i> Hi everyone </i>
<h4> My blog- webguruanik.blogspot.com </h4>

  </body> 
 

</html>

CSS File - 

* {
  text-align: center;
  color:red;
}


Comments

Popular posts from this blog

Alert Dialog Box in JS || JavaScript Dialog Box

HTML - Frameset Tag in html

Indian Flag || Indian Flag using HTML CSS