
<!-- Name: HTML5 & CSS3 Lesson 006 -->
<!-- Date: 06/23/2013 -->
<!-- Description: Basic HTML5 & CSS3 Styling Presented by paullewallen.com -->
<!-- Author: Paul Lewallen -->
<!-- Version: 1.0 -->
<!DOCTYPE html>
<html>
<head>
<title>HTML5 & CSS3 Lesson 006</title>
<style type="text/css">
.frame {
border: 0.2em solid darksalmon;
}
</style>
</head>
<body>
<div>
<h1>HTML5 & CSS3 Lesson 006</h1>
<h2>Selecting By Class</h2>
<nav>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
</nav>
<p class="frame">Nulla tristique <span class="frame">pretium</span> rutrum. Curabitur <span class="frame">lacinia</span> suscipit varius.</p>
</div>
</body>
</html>