in an I so celist triangle the base of the angles are equal the vertex angle is thrice other ways angles what are the measures of angle

Answer :

[tex]<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Bouncing Ball Animation</title>

<style>

body {

margin: 0;

height: 100vh;

display: flex;

justify-content: center;

align-items: center;

background-color: #f0f0f0;

}

.ball {

width: 50px;

height: 50px;

background-color: #3498db;

border-radius: 50%;

position: absolute;

animation: bounce 2s infinite ease-in-out;

}

@keyframes bounce {

0%, 100% {

transform: translateY(0);

}

50% {

transform: translateY(-100px);

}

}

</style>

</head>

<body>

<div class="ball"></div>

</body>

</html>

[/tex]