ASDV-WebDev/Semester 1/Chapter ZIPs/HTML/chapter6/lighthouse/gradient.html

56 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Lighthouse Bistro</title>
<meta charset="utf-8">
<style>
body { font-family: Arial, Verdana, sans-serif;
background-color:#8FA5CE;
background-repeat: no-repeat;
background-image: linear-gradient(to bottom, #FFFFFF, #8FA5CE);
}
#container { margin: auto;
background-color: #ffffff;
width: 800px;
padding: 20px;
box-shadow: 5px 5px 5px #1e1e1e;
}
h1 {background-image: url(lighthouselogo.jpg);
background-repeat: no-repeat;
height: 100px;
width: 650px;
font-size: 3em;
padding-left: 150px;
padding-top: 30px;
margin-top: 0;
border: 1px solid #000033;
border-radius: 15px;
text-shadow: 3px 3px 3px #666;
}
h2 { color: #000033;
font-family: arial, sans-serif;
text-shadow: 1px 1px 0 #ccc;
}
#footer { font-size: .80em;
font-style: italic;
}
</style>
</head>
<body>
<div id="container">
<h1>Lighthouse Bistro</h1>
<div id="nav"><a href="index.html">Home</a> &nbsp;<a href="menu.html">Menu</a> &nbsp;<a href="directions.html">Directions</a> &nbsp;<a href="contact.html">Contact</a></div>
<h2>Locally Roasted Free-Trade Coffee</h2>
<p>Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.</p>
<h2>Specialty Pastries</h2>
<p>Enjoy a selection of our fresh-baked, organic pastries, including fresh-fruit muffins, scones, croissants, and cinnamon rolls.</p>
<h2>Lunchtime is Anytime</h2>
<p>Savor delicious wraps and sandwiches on hearty, whole-grain breads with locally-grown salad, fruit, and vegetables. </p>
<div id="footer">Copyright &copy; Your Name Here</div>
</div>
</body>
</html>