CSS Two-Column Page Layout HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>Lighthouse Island Bistro</title>
<meta charset="utf-8">
<style>
body{font-family: Verdana,Arial,sans-serif;
background-color: #00005D;}
#wrapper{background-color: #b3c7e6;
width: 80%;
margin: auto;
min-width: 850px;}
#leftcolumn{float: left;
width: 150px;}
#rightcolumn{margin-left: 155px;
background-color: #ffffff;}
header{background-color: #869dc7;
color: #00005D;
font-size: 150%;
padding: 10px;}
h2{color: #869dc7;
font-family: arial,sans-serif;}
.content{padding: 20px 20px 0 20px;}
#floatright{margin: 10px;
float:right;}
footer{font-size: 70%;
text-align: center;
clear: right;
padding-bottom: 20px;}
nav a{margin: 30px;}
</style>
</head>
<body>
<div id="wrapper">
<div id="leftcolumn">
<nav>
<a href="index.html">Home</a>
<a href="rooms.html">Menu</a>
<a href="directions.html">Directions</a>
<a href="contact.html">Contact</a>
</nav>
</div>
<div id="rightcolumn">
<header>
<h1>Lighthouse Island Bistro</h1>
</header>
<div class="content">
<img src="lighthouseisland.jpg" width="250" height="355" id="floatright" alt="Lighthouse Island">
<h2>Locally Roasted Free-Trade Coffee</h2>
<p>Indulge in the aroma of freshly ground roast coffee.Specialty drinks are available hor or cold.</p>
<h2>Specialty Pastries</h2>
<p>Enjoy a selection of our fresh-baked,organic pastries,including fresh-fruits muffins,scones,croissants,and cinammon 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>
<h2>Panoramic View</h2>
<p>Take in some scenery! The top of our lighthouse offers a panoramic view of the countryside. Challenge your friends to climb our 100-stair tower.</p>
</div>
<footer>Copyright © 2014</footer>
</div>
</div>
</body>
</html>
Output
Subscribe to:
Post Comments (Atom)
CSS Two-Column Page Layout
CSS Two-Column Page Layout HTML <!DOCTYPE html> <html lang="en"> <head> <title>Lighthouse Island ...
-
index.html <!DOCTYPE html> <html> <head> <style type="text/css"> body{background-color:#...
-
CSS Two-Column Page Layout HTML <!DOCTYPE html> <html lang="en"> <head> <title>Lighthouse Island ...
-
Floating Image HTML <!DOCTYPE html> <html> <head> <style> div.gallery { margin: 5px; border: 1px solid #...
No comments:
Post a Comment