<!DOCTYPE html>
<html>
<!--
More CSS play - CSS 318 - Week 5 Lab
by: Sharon Tuttle
last modified: 2-18-13
-->
<head>
<title> More CSS Play </title>
<meta charset="utf-8" />
<link href="lab05.css" type="text/css"
rel="stylesheet" />
</head>
<body>
<div class="sidebar">
<h1> Lady Ada Lovelace </h1>
<p>
Lady Ada Lovelace is often considered to be the first
computer programmer. The Ada programming language is named
after her.
</p>
</div>
<div id="main">
<h1> More CSS play </h1>
<p class="width1">
Computer Science can teach you many things in many
areas (not least of which is the capability to enjoy
more of the jokes in the comic strip
<a href="http://xkcd.com">xkcd</a>).
</p>
<p class="width2 section-next">
Notice that another feature of our major is
<a href="#cs318">CS 318</a>,
in which you learn a number of useful concepts.
</p>
<p>
This is a paragraph that just talks about things.
Blah blah blah. I don't really care for the ipsum stuff so
much, although it probably gives a quick way to give enough
content to really SEE what the page flow would actually
be like.
</p>
</div>
<div class="column">
Always look on the bright side of life!
</div>
<div class="column">
I'm a Lumberjack, and that's OK!
</div>
<div class="column">
It's an ex-parrot!
</div>
<div class="column">
Is this the room for an argument?
</div>
<p class="aftercolumns">
I am the text that follows the columns. I want it to catch your eye.
</p>
<div>
<table>
<tr> <th> Beverage </th> <th> Caffeine (mg) </th></tr>
<tr> <td> Brewed coffee </td>
<td> 80 - 135 </td> </tr>
<tr> <td> Brewed tea </td>
<td> 60 </td> </tr>
</table>
</div>
<h2> CS 111 </h2>
<p>
This is an introduction to not just programming, but
also to problem-solving.
</p>
<h2> CS 112 </h2>
<p>
CS 111 covered the basics of programming. Now
CS 112 adds the ability to create your own data
types via classes and object-oriented programming.
</p>
<h2> CS 315 </h2>
<p>
Here, you learn about modeling and designing
databases. You also learn the wonders of SQL.
</p>
<h2 id="cs318"> CS 318 </h2>
<p>
Get introduced to a myriad of tools to build
n-tier applications! Get your PL/SQL stored functions
and procedures, your HTML5 intro, your CSS3 intro,
a soupcon of JavaScript, some JDBC and Java servlets
and JSP, even some PHP.
</p>
<h3> HTML </h3>
<p> We now use "strict"-style HTML 5 in this course. </p>
<h3> CSS </h3>
<p> We now use CSS3 in this course. </p>
<h2> CS 435 </h2>
<p>
Learn about ideas for how to more effectively
build larger software when a team of programmers
needs to be brought to bear.
</p>
<hr />
<p>
<a href="http://validator.w3.org/check/referer">
Validate this HTML5 page
</a>
</p>
<p>
For full credit, this page must also pass the tests at
<a href="http://lint.brihten.com/html/">
http://lint.brihten.com/html/ </a> when its URL is
entered (and without modifying the default options).
</p>
<p>
<a href=
"http://jigsaw.w3.org/css-validator/check/referer?profile=css3">
<img src="http://jigsaw.w3.org/css-validator/images/vcss"
alt="Valid CSS3!" height="31" width="88" />
</a>
</p>
</body>
</html>