HTML and CSS Reference
In-Depth Information
<body>
<h1>CircleSoft Web Design</h1>
<div id="content">
<p>Our professional staff takes pride in its working
relationship with our clients by offering personalized services
that listen to their needs, develop their target areas, and
incorporate these items into a well-presented Web site that
works.</p>
</div>
<ul class="nav">
<li>Home</li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
</ul>
</div>
</body>
</html>
2. Fill in the Missing Code. This Web page should be configured as a two-column page
layout with a right column 150 pixels wide. The right column should have a 1 pixel
border. The padding in the left column content area needs to allow for the room
that will be used by the right column. Some CSS properties and values, indicated by
"_" , are missing. Fill in the missing code.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en" >
<head>
<title>Trillium Media Design</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
body { margin: 0;
font-family: Verdana, Arial, sans-serif;
}
#rightcolumn { "_":"_" ;
width: "_" ;
background-color: #cccccc;
height: 400px;
border: "_" ;
}
#rightcolumn {
}
#logo { background-color: #cccccc;
color: #663333;
font-size: x-large;
border-bottom: 1px solid #333333;
}
.content { padding: “_” ;
}
Search WWH ::




Custom Search