HTML5 and CSS3-lustra x Kodak Black -I Needx+ courses/CST-231 001 201 910/HTML5%
ID: 3754060 • Letter: H
Question
HTML5 and CSS3-lustra x Kodak Black -I Needx+ courses/CST-231 001 201 910/HTML5%20and%20CSS3%2C%2011 r of floated elements lass value container to auto. URE D-28 Spotted wren Garden Ce +C D file/l/C/Users/sasha,000/Documents/394049 HTML UD Data, Files/1C1/indexhtmi E Spotted Wren Garden Center For your year-round gardea aud yad needs Specials Annuals Summer Hours Mon am-Sp Tue 8am-8pm Wed SamSp 50% Off All Pasts and Mums Tropicals Buy Two Succulents (quart size). Get Oue Free 25% Off An Palms 20% Off Orchids Sat 9-6pm Perennials 50% off Roses 548 N 58th St Omaha NE 68132 (402) 555-9736 Laying Out Elements With CSS 105Explanation / Answer
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>HTML Box Model</title>
<link rel="stylesheet" href="BoxModel.css">
<style>
#header {
background-color: yellow;
width: 800px;
border-bottom: 3px solid red;
padding: 25px;
margin: 25px;
text-align: center;
height: 100px;
}
#container {
width: 900px;
margin: 25px;
}
#left-section {
border-bottom: 3px solid red;
border-right: 3px solid red;
border-top: 3px solid red;
background-color: green;
width: 345px;
padding: 25px;
text-align: left;
float: left;
}
#right-section {
border-bottom: 3px solid red;
border-left: 3px solid red;
border-top: 3px solid red;
background-color: green;
width: 400px;
padding: 25px;
text-align: left;
float: left;
height: 305px;
}
#footer {
background-color: yellow;
width: 800px;
border-top: 3px solid red;
padding: 25px;
margin: 25px;
text-align: center;
}
</style>
</head>
<body>
<div id="header">
<h1>Spotted Wren Garden Center</h1>
<p>For your year-round garden and yard needs<p>
</div>
<div id="container">
<div id="left-section">
<h2>Summer Hours</h2>
<p>Mon: 8am -- 8pm</p>
<p>Tue: 8am -- 8pm</p>
<p>Wed: 8am -- 5pm</p>
<p>Thu: 8am -- 8pm</p>
<p>Fri: 8am -- 8pm</p>
<p>Sat: 9am -- 6pm</p>
<p>Sun: 11am -- 6pm</p>
</div>
<div id="right-section">
<h2>Specials</h2>
<h3>Annuals</h3>
<h3>Tropicals</h3>
<h3>Perenials</h3>
</div>
</div>
<div id="footer">
<p>548 n.58th st. * omaha, ne 68132 * (402) 555-9736</p>
</div>
</body>
</html>
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.