Posts

Showing posts with the label HTML

how to make a animation in HTML CSS

 Animation in HTML css HTML is hypertext markup language so today we will learn how can we make animation in HTML CSS and we are going to animate the rainfall effect in HTML. <html> <head> <title> this is an example of animation</title> </head>  <body> <div class="animate1"></div> so here I have closed head tag and I have given a title you can give anything as the title, so we have written div in which I have given a class called animate1 now we are going to make many div and will give different class to each you can give it any name <html> <head> <title> this is an example of animation</title> </head>  <body> <div class="animate1"></div> <div class="animate2"></div> <div class="animate3"></div> <div class="animate4"></div> <div class="animate5"></div> here are some div and i...

What are html tags in html

Html and types of html tags HTML   is a hypertext markup language it can be used to design websites so in HTML some tags which open closes at the end like  this  and some tags which just opens won't close at the end like <br > tag   which we   can   also say as a line break   tag. So let's see how we can use it ; Example of  html tags <Html> <Head> <Title>example of html tags</title> <\head> <Body> <H1>this  is  the big heading tag which is necessary to  close  at the  end  of   sentence <\H1> <H2> so <BR> tag  breaks the line at the end, and we don't need to close it at the end</H2><BR> <H3>So this is the example  of tag <\H3> </Body> </Html> So I hope you will like this article so for more article like this subscribe our blog