<!DOCTYPE html>
<head>

	<title>Fun Facts for Kids!</title>

	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<meta name="description" content="Check out my website! You can also learn a lot of things yourself here!">
	<meta name="keywords" content="nammy,nambaseking01,Scratch,HTML,JS,JavaScript,writing,programming,Lua,videos,talking,stories,education,happiness,india,belgium">
	<meta name="author" content="Nambaseking01">


	<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
	<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
	<link rel="icon" type="image/x-icon" href="https://cdn2.scratch.mit.edu/get_image/user/32829133_60x60.png">

	<style>
	body {
		background-color: lightgrey;
		font-family: Helvetica;
	}
	.headerDiv {
		background-color: grey;
		color: black;
		margin: -5px;
		padding: 25px;
		text-align: center;
	}
	button {
		float: left;
	}
	#search {
	    width: 25%;
	    font-size: 18px;
	    padding: 5px;
	    background-color: lightgrey;
	    border: 2px solid darkgrey;
	    border-radius: 10px;
	    margin-left: 25px;
	}
	</style>

</head>
<body>

	<a href="https://nambaseking01.github.io/Nambaseking01.github.io-kidactivities/" target="_blank">
	<button>Go back to home page!</button>
	</a>

	<div class="headerDiv">

		<header>

			<i class="fas fa-cloud" style="font-size: 75px; float: left;"></i> 
			<i class="fas fa-cloud" style="font-size: 75px; float: right;"></i>

			<h1>Fun Facts!</h1>

		</header>

			<p>Below are some really fun facts that you kids will love (they are in alphabetical order)!</p>

	</div><br>
	
    <input type="text" id="search" onkeyup="filter()" placeholder="Search.." />
    
	<ul id="facts">
		<li><p>65% of the highways in Germany have no speed limit!</p></li>
		<li><p>Bangladesh used to be called East Pakistan!</p></li>
		<li><p>Bee stings have some benefits!</p></li>
		<li><p>Bees can recognize human faces!</p></li>
		<li><p>Bees communicate with each other by dancing!</p></li>
		<li><p>Bees hate human breath!</p></li>
		<li><p>Berlin has the largest train station in Europe!</p></li>
		<li><p>Cats are very sacred to the Egyptians!</p></li>
		<li><p>Chewing gum while you cut an onion will help keep you from crying!</p></li>
		<li><p>Cows are seen as sacred in India - nobody eats beef and most of the people are vegetarians!</p></li>
		<li><p>Eating honey can make you smarter!</p></li>
		<li><p>Experts think cheese was invented in 8000 BCE which is over 10,000 years ago!</p></li>
		<li><p>Fish do not feel any pain!</p></li>
		<li><p>Florida is bigger than England!</p></li>
		<li><p>Germany is the seventh largest country in Europe!</p></li>
		<li><p>Global warming is changing by 5% every year!</p></li>
		<li><p>Honey bees do not sleep!</p></li>
		<li><p>Honey bees' sense of smell is 50X powerful as a dog!</p></li>
		<li><p>If you removed all of the gold from the core of the Earth, one full layer would cover it up to your knees!</p></li>
		<li><p>In Albania, shaking your head means "yes" and nodding means "no"</p></li>
		<li><p>In Ancient Egypt people used to pay their taxes with honey!</p></li>
		<li><p>In Ancient Rome, people ate a mixture of snow and fruits!</p></li>
		<li><p>In the first row of a keyboard, most of the letters on there spell "typewriter"!</p></li>
		<li><p>In the summer the queen bee can lay 2,500 eggs a day!</p></li>
		<li><p>It rains metal in Venus!</p></li>
		<li><p>Only female bees and mosquitos can sting you!</p></li>
		<li><p>Pluto is smaller than Russia!</p></li>
		<li><p>Russia is located across nine time zones!</p></li>
		<li><p>Russia is the largest country in the world!</p></li>
		<li><p>Some hummingbirds weigh less than a penny</p></li>
		<li><p>The Egyptians believed in over 2,000 gods!</p></li>
		<li><p>The first planet sighted by telescope was Uranus!</p></li>
		<li><p>The moon is drifting away from the earth four centimetres every year!</p></li>
		<li><p>There are over 1.2 billion people that live in India!</p></li>
		<li><p>There are over 2,100 castles in Germany!</p></li>
		<li><p>The queen bee is the only bee that does not die when it stings you!</p></li>
		<li><p>The universities in Germany are free for everyone - even for Non-Germans!</p></li>
		<li><p>The wings of bees beat 11,400 times a minute!</p></li>
		<li><p>The world's oldest piece of bubble gum is over 9,000 years old!</p></li>
		<li><p>The world's smallest dog can fit in a pocket!</p></li>
		<li><p>To travel to Mars it takes 60 whole days!</p></li>
		<li><p>When Pluto was first discovered, it was called "Planet X"!</p></li>
		<li><p>Your fingernails grow faster when you feel cold!</p></li>
	</ul>
	
	<script>
	function filter() {
	  var input, filter, ul, li, p, i;
	  input = document.getElementById("search");
	  filter = input.value.toUpperCase();
	  ul = document.getElementById("facts");
	  li = ul.getElementsByTagName("li");
	  for (i = 0; i < li.length; i++) {
		p = li[i].getElementsByTagName("p")[0];
		if (p.innerHTML.toUpperCase().indexOf(filter) > -1) {
		  li[i].style.display = "";
		} else {
		  li[i].style.display = "none";
		}
	  }
	}
	</script>

</body>
</html>