Math, asked by sidkap10, 9 months ago


 \sqrt{ \frac{361}{169} }

Answers

Answered by rsultana331
1

&lt;!DOCTYPE html&gt;</p><p></p><p>&lt;html lang="en"&gt;</p><p></p><p>&lt;head&gt;</p><p></p><p>&lt;title&gt;Hot Air Balloon&lt;/title&gt;</p><p></p><p>&lt;/head&gt;</p><p></p><p>&lt;body&gt;</p><p></p><p>&lt;div class="container"&gt;</p><p>  &lt;div class="balloon"&gt;&lt;/div&gt;</p><p>  &lt;div class="string left"&gt;&lt;/div&gt;</p><p>  &lt;div class="string right"&gt;&lt;/div&gt;</p><p>  &lt;div class="basket"&gt;&lt;/div&gt;</p><p>  &lt;div class="sun"&gt;&lt;/div&gt;</p><p>  &lt;div class="cloud bottom-right"&gt;&lt;/div&gt;</p><p>&lt;div class="cloud top-right"&gt;&lt;/div&gt;</p><p>&lt;div class="cloud bottom-left"&gt;&lt;/div&gt;</p><p>&lt;/div&gt;</p><p></p><p>&lt;style&gt;</p><p></p><p>.container,</p><p>.balloon,</p><p>.balloon::after,</p><p>.balloon::before,</p><p>.basket,</p><p>.basket::before,</p><p>.string,</p><p>.sun,</p><p>.cloud,</p><p>.cloud::after,</p><p>.cloud::before {</p><p>  position: absolute;</p><p>  margin: auto;</p><p>  top: 0;</p><p>  right: 0;</p><p>  bottom: 0;</p><p>  left: 0;</p><p>}</p><p></p><p>.container {</p><p>  height: 500px;</p><p>  width: 500px;</p><p>  background-color: #E1E4FA;</p><p>  border-radius: 50%;</p><p>}</p><p>.balloon {</p><p>  height: 300px;</p><p>  width: 300px;</p><p>  border-radius: 50%;</p><p>  top: -150px;</p><p>  background-color: #FF98C0;</p><p>  border: 10px solid #AD91CA;</p><p>  animation: float 2s ease-in-out infinite;</p><p>}</p><p>.balloon::before {</p><p>  content: '';</p><p>  height: 300px;</p><p>  width: 190px;</p><p>  border: 10px solid #AD91CA;</p><p>  background-color: #FFC6E6;</p><p>  border-radius: 50%;</p><p>}</p><p></p><p>.balloon::after {</p><p>  content: '';</p><p>  height: 300px;</p><p>  width: 60px;</p><p>  background-color: #FF98C0;</p><p>  border: 10px solid #AD91CA;</p><p>  border-radius: 50%;</p><p>}</p><p></p><p>.basket {</p><p>  height: 55px;</p><p>  width: 65px;</p><p>  background-color: #AD91CA;</p><p>  border-radius: 4px;</p><p>  top: 310px;</p><p>  animation: float 2s ease-in-out infinite;</p><p>}</p><p></p><p>.basket::before {</p><p>  content: '';</p><p>  background-color: #AD91CA;</p><p>  height: 10px;</p><p>  width: 75px;</p><p>  top: -60px;</p><p>  left: -5px;</p><p>  border-radius: 4px;</p><p>}</p><p>.string {</p><p>  height: 50px;</p><p>  width: 10px;</p><p>  background-color: #AD91CA;</p><p>  top: 200px;</p><p>  left: 60px;</p><p>  animation: float-strings 2s ease-in-out infinite;</p><p>}</p><p></p><p>.string.right {</p><p>  transform: rotate(20deg);</p><p>}</p><p></p><p>.string.left {</p><p>  transform: rotate(-20deg);</p><p>  left: -60px;</p><p>}</p><p></p><p>.sun {</p><p>  height: 100px;</p><p>  width: 100px;</p><p>  background: #FFE371;</p><p>  border-radius: 50%;</p><p>  top: 100px;</p><p>  left: -480px;</p><p>}</p><p></p><p>.cloud {</p><p>  background-color: white;</p><p>  border-radius: 50%;</p><p>}</p><p></p><p>.cloud.bottom-right {</p><p>  height: 40px;</p><p>  width: 100px;</p><p>  top: 250px;</p><p>  left: 400px;</p><p>}</p><p>cloud.bottom-right::after {</p><p>  content: '';</p><p>  background-color: white;</p><p>  height: 50px;</p><p>  width: 60px;</p><p>  border-radius: 50%;</p><p>  top: -15px;</p><p>  left: 20px;</p><p>}</p><p></p><p>.cloud.top-right {</p><p>  height: 40px;</p><p>  width: 100px;</p><p>  top: -150px;</p><p>  left: 420px;</p><p>}</p><p></p><p>.cloud.top-right::after {</p><p>  content: '';</p><p>  background-color: white;</p><p>  height: 50px;</p><p>  width: 60px;</p><p>  border-radius: 50%;</p><p>  top: -15px;</p><p>  left: 20px;</p><p>}</p><p></p><p>.cloud.bottom-left {</p><p>  height: 40px;</p><p>  width: 140px;</p><p>  top: 170px;</p><p>  left: -480px;</p><p>}</p><p></p><p>.cloud.bottom-left::before {</p><p>  content: '';</p><p>  background-color: white;</p><p>  height: 50px;</p><p>  width: 60px;</p><p>  border-radius: 50%;</p><p>  top: -30px;</p><p>  left: 45px;</p><p>  z-index: 100;</p><p>}</p><p></p><p>.cloud.bottom-left::after {</p><p>  content: '';</p><p>  background-color: white;</p><p>  height: 50px;</p><p>  width: 60px;</p><p>  border-radius: 50%;</p><p>  top: -15px;</p><p>  left: -34px;</p><p>  z-index: 100;</p><p>}</p><p></p><p>@keyframes float {</p><p>  0%,</p><p>  100% {</p><p>    transform: translateY(0) rotate(0deg);</p><p>  }</p><p>  50% {</p><p>    transform: translateY(-15px) rotate(-2deg);</p><p>  }</p><p>}</p><p></p><p>@keyframes float-strings {</p><p>  0%,</p><p>  100% {</p><p>    top: 200px;</p><p>  }</p><p>  50% {</p><p>    top: 175px;</p><p>  }</p><p>}</p><p></p><p>&lt;/style&gt;</p><p>&lt;/body&gt;</p><p>&lt;/html

Answered by RohitBanerjee
0

Step-by-step explanation:

the ans is 0.11242603550.

Similar questions