English, asked by queencawalia, 6 months ago

essay incident which made me nervous more than 150 words​

Answers

Answered by Anonymous
1

&lt;html&gt;</p><p>&lt;head&gt;</p><p>    &lt;title&gt;Fish animation&lt;/title&gt;</p><p>    &lt;link rel="stylesheet" href="style.css"&gt;</p><p>&lt;/head&gt;</p><p>&lt;style&gt;body</p><p>{</p><p>    background-color: aquamarine;</p><p>}</p><p>.fish</p><p>{</p><p>    height: 80px;</p><p>    width: 120px;</p><p>    border-radius: 80%;</p><p>    background-color: blueviolet;</p><p>    top: 50%;</p><p>    left:100%;</p><p>    position: absolute;</p><p>    animation: flow linear infinite 20s;</p><p>}</p><p>.eye</p><p>{</p><p>    background-color: rgb(255, 255, 255);</p><p>    height: 10px;</p><p>    width: 10px;</p><p>    top:30%;</p><p>    left:15%;</p><p>    border-radius: 100px;</p><p>    position: absolute;</p><p>}</p><p>.iris</p><p>{</p><p>    background-color: rgb(0, 0, 0);</p><p>    height: 5px;</p><p>    width: 5px;</p><p>    top:30%;</p><p>    left:15%;</p><p>    border-radius: 100px;</p><p>    position: absolute;</p><p>}</p><p>.lip1</p><p>{</p><p>    height: 10px;</p><p>    width: 20px;</p><p>    border-radius: 80%;</p><p>    background-color: blueviolet;</p><p>    top:40%;</p><p>    left:-9%;</p><p>    position: absolute;</p><p>    transform: rotateZ(40deg);</p><p>    animation:lipup  linear infinite 1s;</p><p>}</p><p>.lip2</p><p>{</p><p>    height: 10px;</p><p>    width: 20px;</p><p>    border-radius: 80%;</p><p>    background-color: blueviolet;</p><p>    top: 50%;</p><p>    left:-9%;</p><p>    position: absolute;</p><p>    transform: rotateZ(-40deg);</p><p>    animation:lipdown linear infinite 1s;</p><p>}</p><p>.hand1</p><p>{</p><p>    height: 50px;</p><p>    width: 30px;</p><p>    border-radius: 80%;</p><p>    background-color: blueviolet;</p><p>    top:-30%;</p><p>    left:40%;</p><p>    position: absolute;</p><p>    transform: rotateZ(45deg);</p><p>    animation:handup linear infinite 1s;</p><p>}</p><p>.hand2</p><p>{</p><p>    height: 50px;</p><p>    width: 30px;</p><p>    border-radius: 80%;</p><p>    background-color: blueviolet;</p><p>    top: 70%;</p><p>    left:40%;</p><p>    position: absolute;</p><p>    transform: rotateZ(-45deg);</p><p>    animation:handdown linear infinite 1s;</p><p>}</p><p>.tail1</p><p>{</p><p>    height: 40px;</p><p>    width: 50px;</p><p>    border-radius: 80%;</p><p>    background-color: blueviolet;</p><p>    top:10%;</p><p>    left:93%;</p><p>    position: absolute;</p><p>    transform: rotateZ(-45deg);</p><p>    animation:tailup linear infinite 1s;</p><p>}</p><p>.tail2</p><p>{</p><p>    height: 40px;</p><p>    width: 50px;</p><p>    border-radius: 80%;</p><p>    background-color: blueviolet;</p><p>    top: 50%;</p><p>    left:93%;</p><p>    position: absolute;</p><p>    transform: rotateZ(45deg);</p><p>    animation:taildown linear infinite 1s;</p><p>}</p><p>.bubbles</p><p>{</p><p>    background-color: rgb(255, 255, 255);</p><p>    height: 10px;</p><p>    width: 10px;</p><p>    top:50%;</p><p>    left:-25%;</p><p>    border-radius: 100px;</p><p>    position: absolute;</p><p>    animation: bubble infinite 0.2s;</p><p>}</p><p>@keyframes flow{</p><p>     0%{transform:translateX(0px);}</p><p>     100%{transform: translateX(-700px);}</p><p>}</p><p>@keyframes tailup{</p><p>    0%{transform:rotateZ(-30deg);}</p><p>    100%{transform:rotateZ(-45deg);}</p><p>}</p><p>@keyframes taildown{</p><p>    0%{transform:rotateZ(30deg);}</p><p>    100%{transform:rotateZ(45deg);}</p><p>}</p><p>@keyframes handup{</p><p>    0%{transform:rotateZ(40deg);}</p><p>    100%{transform:rotateZ(50deg);}</p><p>}</p><p>@keyframes handdown{</p><p>    0%{transform:rotateZ(-40deg);}</p><p>    100%{transform:rotateZ(-50deg);}</p><p>}</p><p>@keyframes lipup{</p><p>    0%{transform:translateX(0px);transform: rotateZ(30deg);}</p><p>     100%{transform: translateX(-7px);transform: rotateZ(40deg);}</p><p>}</p><p>@keyframes lipdown{</p><p>    0%{transform:translateX(0px);transform: rotateZ(-30deg);}</p><p>    100%{transform: translateX(-7px);transform: rotateZ(-40deg);}</p><p>}</p><p>@keyframes bubble{</p><p>    0%{transform:translateY(0px);}</p><p>    25%{transform:translateY(-50px);}</p><p>    50%{transform:translateY(-100px);}</p><p>    75%{transform:translateY(-150px);}</p><p>    100%{transform:translateY(-200px);}</p><p>}&lt;/style&gt;</p><p>&lt;body&gt;</p><p>    &lt;div class = "fish"&gt;</p><p>        &lt;div class = "bubbles"&gt;&lt;/div&gt;</p><p>        &lt;div class = "eye"&gt;</p><p>                &lt;div class = "iris"&gt;&lt;/div&gt;</p><p>        &lt;/div&gt;</p><p>        &lt;div class = "lip1"&gt;&lt;/div&gt;</p><p>        &lt;div class = "lip2"&gt;&lt;/div&gt;</p><p>        &lt;div class = "hand1"&gt;&lt;/div&gt;</p><p>        &lt;div class = "hand2"&gt;&lt;/div&gt;</p><p>        &lt;div class = "tail1"&gt;&lt;/div&gt;</p><p>        &lt;div class = "tail2"&gt;&lt;/div&gt;</p><p>    &lt;/div&gt;</p><p>&lt;/body&gt;</p><p>&lt;/html&gt;

Answered by noishamittal
3

Answer:Humour has immense significance in our life and it makes our life motivating and pleasurable. It is actually the susceptibility of certain memorable incidents that provides laughter and aggravates amusement. If we are getting pleasure and delight by acquiring something then we must admit the truth that this particular thing really exists. So, here I would like to share a very humorous incident of my life which I cannot forget in any case.

An incident took place when I was in class 8th. I and my friends were waiting for the teacher to come to the class. It was after recess and the entire class was doing something or the other like some were chit-chatting, some were playing Antakshari and some were busy in other activities. The entire class was noisy at that point of time. But, all of a sudden pin drop silence prevailed and I saw the Principal standing in front of me. I was a bit nervous at that moment. He then asked one of the students 'what lies underneath?' The boy did not respond to the Principal's question. Then he asked the same question to another student and got the same reaction from him as well. Finally, when he asked this question to a girl, she in fact started searching under the bench to find something. However, she did not get anything there and she answered 'nothing is there Sir'. Listening to her answer, the entire class started laughing. The Principal was so angry and embarrassed at the same time that he hit her twice on her hand with a wooden scale.

Explanation:

Hope you liked it, if it's big you can cut short...Thanks!!

Similar questions