English, asked by saurabhlalwani585, 1 year ago

निम्नलिखित माया कारखानदी का पदपरिचय लिखिए
आजही भारत में अनेक अभिनय है।
मालकानमने जाया करो ताकि स्वास्थ्य ठीक रहे।
पिलाजी कल ही तीर्थ यात्रा पर गए।
अनवागने काला कोट पहना।।​

Answers

Answered by aman7913
4

&lt;!--i visited a youtube channel online tutorial and helped John Wells for making this code.thanks to everybody who upvoted my code especially John Wells for your help</p><p>--&gt;</p><p>&lt;!DOCTYPE html&gt;</p><p>&lt;html&gt;</p><p>&lt;head&gt; &lt;title&gt; text&lt;/title&gt;</p><p>&lt;style&gt;</p><p>body{</p><p>margin-top:50%;</p><p>padding:0px;</p><p>background:#262626;</p><p>text-align:center;</p><p>}</p><p>*{</p><p>box-sizing:border-box;}</p><p>span{</p><p>margin:0px;</p><p>padding:0px;</p><p>transform:translate(-50%,50%);</p><p>color:#262626;</p><p>font-size:500%;</p><p>letter-spacing:100%;</p><p>-webkit-animation:glow 1.4s linear infinite;</p><p>-moz-animation:glow 1.4s linear infinite;</p><p>-o-animation:glow 1.4s linear infinite;</p><p>-ms-animation:glow 1.4s linear infinite;</p><p>animation:glow 1.4s linear infinite;</p><p>}</p><p>@-webkit-keyframes glow{</p><p>0%{</p><p>color:#262626;</p><p>text-shadow:none;</p><p>}</p><p>90%{</p><p>color:#262626;</p><p>text-shadow:none;</p><p>}</p><p>100%{</p><p>color:#FFFF00;</p><p>text-shadow:0 0 7px #fff900,0 0 50px #ff6c00;</p><p>}</p><p>}</p><p>@-moz-keyframes glow{</p><p>0%{</p><p>color:#262626;</p><p>text-shadow:none;</p><p>}</p><p>90%{</p><p>color:#262626;</p><p>text-shadow:none;</p><p>}</p><p>100%{</p><p>color:#FFFF00;</p><p>text-shadow:0 0 7px #fff900,0 0 50px #ff6c00;</p><p>}</p><p>}</p><p></p><p>@-o-keyframes glow{</p><p>0%{</p><p>color:#262626;</p><p>text-shadow:none;</p><p>}</p><p>90%{</p><p>color:#262626;</p><p>text-shadow:none;</p><p>}</p><p>100%{</p><p>color:#FFFF00;</p><p>text-shadow:0 0 7px #fff900,0 0 50px #ff6c00;</p><p>}</p><p>}</p><p>@-ms-keyframes glow{</p><p>0%{</p><p>color:#262626;</p><p>text-shadow:none;</p><p>}</p><p>90%{</p><p>color:#262626;</p><p>text-shadow:none;</p><p>}</p><p>100%{</p><p>color:#FFFF00;</p><p>text-shadow:0 0 7px #fff900,0 0 50px #ff6c00;</p><p>}</p><p>}</p><p></p><p>@keyframes glow{</p><p>0%{</p><p>color:#262626;</p><p>text-shadow:none;</p><p>}</p><p>90%{</p><p>color:#262626;</p><p>text-shadow:none;</p><p>}</p><p>100%{</p><p>color:#FFFF00;</p><p>text-shadow:0 0 7px #fff900,0 0 50px #ff6c00;</p><p>}</p><p>}</p><p>span:nth-child(1) {</p><p>animation-delay:.2s;</p><p>}</p><p>span:nth-child(2) {</p><p>animation-delay:.4s;</p><p>}</p><p>span:nth-child(3) {</p><p>animation-delay:.6s;</p><p>}</p><p>span:nth-child(4) {</p><p>animation-delay:.8s;</p><p>}</p><p>span:nth-child(5) {</p><p>animation-delay:1s;</p><p>}</p><p>span:nth-child(6) {</p><p>animation-delay:1.2s;</p><p>}</p><p>span:nth-child(7) {</p><p>animation-delay:1.4s;</p><p>}</p><p>.box{</p><p>width:100%;</p><p>height:50%;</p><p>border:3px solid transparent;</p><p>border-image:linear-gradient(40deg,#EE82EE,#4B0082,blue,green,orange,red);</p><p>border-image:-webkit-linear-gradient(40deg,#EE82EE,#4B0082,blue,green,orange,red);</p><p>border-image:-moz-linear-gradient(40deg,#EE82EE,#4B0082,blue,green,orange,red);</p><p>border-image:-o-linear-gradient(40deg,#EE82EE,#4B0082,blue,green,orange,red);</p><p>border-image:-ms-linear-gradient(40deg,#EE82EE,#4B0082,blue,green,orange,red);</p><p></p><p>border-image-slice:1;</p><p>box-shadow:0 15px 25px rgba(0,0,0,.2);</p><p>}</p><p>&lt;/style&gt;</p><p>&lt;script&gt;</p><p>function done() {</p><p>  // Get all of the spans and change the last 3</p><p>  // characters so they spell out "loaded!".</p><p>  var spans = document.getElementsByTagName("span");</p><p>  spans[4].innerHTML = "e";</p><p>  spans[5].innerHTML = "d";</p><p>  spans[6].innerHTML = "!";</p><p>  // For each span, stop it's animation and change</p><p>  // the color to same used in effect.</p><p>  for (var i = 0; i &lt; spans.length; i++) {</p><p>    spans[i].style.animation = "none";</p><p>    spans[i].style.color = "#ffff00"</p><p>  } // for</p><p>} // done</p><p>&lt;/script&gt;</p><p>&lt;/head&gt;</p><p>&lt;!-- After the body is loaded, set a 10 second</p><p>     timer to stop the animation. The function done</p><p>     gets called to do so. --&gt;</p><p>&lt;body onload="setTimeout(done, 10000);"&gt;</p><p>&lt;div class="box"&gt;</p><p>&lt;span&gt;L&lt;/span&gt;</p><p>&lt;span&gt;o&lt;/span&gt;</p><p>&lt;span&gt;a&lt;/span&gt;</p><p>&lt;span&gt;d&lt;/span&gt;</p><p>&lt;span&gt;i&lt;/span&gt;</p><p>&lt;span&gt;n&lt;/span&gt;</p><p>&lt;span&gt;g&lt;/span&gt;</p><p>&lt;/div&gt;</p><p>&lt;/body&gt;</p><p>&lt;/html&gt;

Similar questions