Hello I am new to creating websites and have lately been messing around with HTMl and CSS. I have a navbar created and would like to put it on every page. I've looked into this before but just can't figure it out. It just doesn't put in the navbar on the page.
home.html
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<?php include 'navbar.php';?>
<div id="hbox1">
<h2>Random</h2>
<p>Is he staying arrival address earnest. To preference considered it themselves inquietude collecting estimating. View park for why gay knew face. Next than near to four so hand. Times so do he downs me would. Witty abode party her found quiet law. They door four bed fail now have. <a href="#">here.</a></p>
</div>
<div id="hbox2">
<h2>Random</h2>
<p>Is he staying arrival address earnest. To preference considered it themselves inquietude collecting estimating. View park for why gay knew face. Next than near to four so hand. Times so do he downs me would. Witty abode party her found quiet law. They door four bed fail now have. <a href="#">here.</a></p>
</div>
<div id="hbox3">
<h2>Random</h2>
<p>Is he staying arrival address earnest. To preference considered it themselves inquietude collecting estimating. View park for why gay knew face. Next than near to four so hand. Times so do he downs me would. Witty abode party her found quiet law. They door four bed fail now have. <a href="#">here!</a></p>
</div>
<div id="hbox4">
<h2>Random</h2>
<p>Is he staying arrival address earnest. To preference considered it themselves inquietude collecting estimating. View park for why gay knew face. Next than near to four so hand. Times so do he downs me would. Witty abode party her found quiet law. They door four bed fail now have. <a href="#">here.</a></p>
</div>
</body>
</html>
and navbar.php
<h1>  My Homepage</h1>
<ul id="nav">
<li><a href="#">Random</a></li>
<li><a href="#">Random</a></li>
<li><a href="#">Random</a></li>
<li><a href="#">Random</a></li>
</ul>