Math, asked by prince8523, 8 months ago

how many prime numbers?​

Answers

Answered by Anonymous
3

</p><p>&lt;!DOCTYPE html&gt;</p><p>&lt;html&gt;</p><p>&lt;head&gt;</p><p>&lt;title&gt;&lt;/title&gt;</p><p>&lt;style&gt;</p><p></p><p>* {</p><p>  -webkit-font-smoothing: antialiased;</p><p>  -moz-osx-font-smoothing: grayscale;</p><p>}</p><p></p><p>body {</p><p>  background-color: salmon;</p><p>}</p><p></p><p>.container {</p><p>  width: 80%;</p><p>  min-height: 100vh;</p><p>  display: -webkit-box;</p><p>  display: flex;</p><p>  flex-wrap: wrap;</p><p>  margin-left: auto;</p><p>  margin-right: auto;</p><p>}</p><p></p><p>.center {</p><p>  -webkit-box-align: center;</p><p>  align-items: center;</p><p>  -webkit-box-pack: center;</p><p>  justify-content: center;</p><p>}</p><p></p><p>.card {</p><p>  background-color: white;</p><p>  width: 250px;</p><p>  min-height: 404.5px;</p><p>  display: -webkit-box;</p><p>  display: flex;</p><p>  -webkit-box-orient: vertical;</p><p>  -webkit-box-direction: normal;</p><p>  flex-direction: column;</p><p>  padding: 20px;</p><p>  margin: 5px;</p><p>  box-shadow: -20px -20px 0px 0px #fb968b;</p><p>  border-radius: 10px;</p><p>  -webkit-animation-name: shadow-show;</p><p>  /* Safari 4.0 - 8.0 */</p><p>  -webkit-animation-duration: 1.5s;</p><p>  /* Safari 4.0 - 8.0 */</p><p>  animation-name: shadow-show;</p><p>  animation-duration: 1.5s;</p><p>  -webkit-transition-timing-function: cubic-bezier(0.795, 0, 0.165, 1);</p><p>  transition-timing-function: cubic-bezier(0.795, 0, 0.165, 1);</p><p>  /* custom */</p><p>}</p><p>.card h1, .card h2, .card h3, .card h4, .card h5 {</p><p>  margin: 0px;</p><p>  padding: 0px 0px 15px 0px;</p><p>  font-family: 'Noto Sans KR', sans-serif;</p><p>  font-size: 30px;</p><p>  color: #282828;</p><p>}</p><p>.card hr {</p><p>  display: block;</p><p>  border: none;</p><p>  height: 3px;</p><p>  background-color: salmon;</p><p>  margin: 0px;</p><p>  -webkit-animation-name: line-show;</p><p>  /* Safari 4.0 - 8.0 */</p><p>  -webkit-animation-duration: 0.3s;</p><p>  /* Safari 4.0 - 8.0 */</p><p>  animation-name: line-show;</p><p>  animation-duration: 0.3s;</p><p>  -webkit-transition-timing-function: cubic-bezier(0.795, 0, 0.165, 1);</p><p>  transition-timing-function: cubic-bezier(0.795, 0, 0.165, 1);</p><p>  /* custom */</p><p>}</p><p>.card p {</p><p>  margin: 15px 0px 0px 0px;</p><p>  font-family: 'Noto Sans KR', sans-serif;</p><p>  font-weight: 100;</p><p>  letter-spacing: -0.25px;</p><p>  line-height: 1.25;</p><p>  font-size: 16px;</p><p>  word-break: break-all;</p><p>  word-wrap: pre-wrap;</p><p>  color: #282828;</p><p>  -webkit-animation-name: p-show;</p><p>  /* Safari 4.0 - 8.0 */</p><p>  -webkit-animation-duration: 1.5s;</p><p>  /* Safari 4.0 - 8.0 */</p><p>  animation-name: p-show;</p><p>  animation-duration: 1.5s;</p><p>}</p><p>.card button {</p><p>  border: none;</p><p>  background-color: salmon;</p><p>  width: 50%;</p><p>  margin: 10px auto;</p><p>  padding: 10px 30px;</p><p>  color: white;</p><p>  font-family: 'Noto Sans KR', sans-serif;</p><p>  text-transform: uppercase;</p><p>}</p><p></p><p>/* Safari 4.0 - 8.0 */</p><p>@-webkit-keyframes line-show {</p><p>  from {</p><p>    margin: 0px 100px;</p><p>  }</p><p>  to {</p><p>    margin: 0px;</p><p>  }</p><p>}</p><p>/* Standard syntax */</p><p>@keyframes line-show {</p><p>  from {</p><p>    margin: 0px 100px;</p><p>  }</p><p>  to {</p><p>    margin: 0px;</p><p>  }</p><p>}</p><p>/* Safari 4.0 - 8.0 */</p><p>@-webkit-keyframes p-show {</p><p>  from {</p><p>    color: white;</p><p>  }</p><p>  to {</p><p>    color: #282828;</p><p>  }</p><p>}</p><p>/* Standard syntax */</p><p>@keyframes p-show {</p><p>  from {</p><p>    color: white;</p><p>  }</p><p>  to {</p><p>    color: #282828;</p><p>  }</p><p>}</p><p>/* Safari 4.0 - 8.0 */</p><p>@-webkit-keyframes shadow-show {</p><p>  from {</p><p>    box-shadow: 0px 0px 0px 0px #e0e0e0;</p><p>  }</p><p>  to {</p><p>    box-shadow: -20px -20px 0px 0px #fb968b;</p><p>  }</p><p>}</p><p>/* Standard syntax */</p><p>@keyframes shadow-show {</p><p>  from {</p><p>    box-shadow: 0px 0px 0px 0px #e0e0e0;</p><p>  }</p><p>  to {</p><p>    box-shadow: -20px -20px 0px 0px #fb968b;</p><p>  }</p><p>}</p><p>&lt;/style&gt;</p><p>&lt;/head&gt;</p><p>&lt;body&gt;</p><p>&lt;div class="container center"&gt;</p><p>  &lt;div class="card"&gt;</p><p>    &lt;h2&gt;PRIME NUMBERS &lt;/h2&gt;</p><p>    &lt;hr/&gt;</p><p>    &lt;p&gt; 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97 (sequence A000040 in the OEIS). . Therefore, every prime number other than 2 is an odd number, and is called an odd prime.</p><p>    &lt;/p&gt;</p><p>    &lt;button&gt;Next&lt;/button&gt;</p><p>  &lt;/div&gt;</p><p>&lt;/div&gt;</p><p>&lt;/body&gt;</p><p>&lt;/html&gt;</p><p>

Answered by naimaloshini
5

I hope this helps...

if its helpful please mark as brainliest..

Attachments:
Similar questions