JSFiddle - React, Tailwind, and code Playground
by twong17
HTML
<!DOCTYPE html>
<html>
<head>
<title>Movie Review Site</title>
<link rel="stylesheet" type="text/css" href="Movie%20Review%20Site.css">
</head>
<body>
<header id="main-header">
<div class="container">
<h1>Movie Review</h1>
</div>
</header>
<nav id="navbar">
<div class="container">
<ul>
<li><a href="google.com"><img src="watermelon-dog.jpg"></a></li>
<li><a href="google.com"><img src="watermelon-dog.jpg"></a></li>
</ul>
</div>
</nav>
</body>
</html>
CSS
#main-header
{
background-color: #F1F1F1;
text-align: center;
padding: 20px;
}