html banner template
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title></title>
</head>
<body>
<div class="head">
<h1>Menu</h1>
</div>
<style>
body{
background-color: black;
text-align: center;
}
.head{
border: 5px solid white;
color: orange;
}
.box1{
height: 200px;
width: 300px;
background-color: lightblue;
}
.box2{
height: 200px;
width: 300px;
background-color: lightblue;
}
.box3{
height: 200px;
width: 300px;
background-color: lightblue;
}
.box4{
height: 200px;
width: 300px;
background-color: lightblue;
}
.box5{
height: 200px;
width: 300px;
background-color: lightblue;
}
</style>
<br>
<br>
<br>
<div class="box1"></div>
<br>
<br>
<div class="box2"></div>
<br>
<br>
<div class="box3"></div>
<br>
<br>
<div class="box4"></div>
<br>
<br>
<div class="box5"></div>
</body>
</html>