Code to make a website about facts about space

 Code to make a website about facts about space


<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>Space Facts</title>

<style>

body {background: black; color: white; font-family: 'Poppins'; text-align: center;}

h1 {color: #03a9f4;}

ul {list-style: none; padding: 0;}

li {margin: 15px 0; font-size: 18px;}

</style>

</head>

<body>

<h1>🌌 Fun Facts About Space</h1>

<ul>

  <li>The Sun is 4.6 billion years old.</li>

  <li>There are more stars in the universe than grains of sand on Earth.</li>

  <li>Venus spins backwards compared to other planets.</li>

  <li>Neutron stars can spin 600 times per second!</li>

</ul>

<footer style="background:#0d47a1; color:white; text-align:center; padding:25px; font-size:22px;">

  © 2025 <a href="https://freecodesforwebsites.blogspot.com/" target="_blank" style="color:#bbdefb; text-decoration:none;">Free Codes for Websites</a> | All rights reserved.

</footer>


</body>

</html>


Comments