Build a website in PHP. This first project is going to show you the basics of building a website using PHP.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Page Heading</h1>
<p>Navigation bar</p>
<p>Page Content</p>
</body>
</html>