<!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> 
    <h1> More CSS play </h1>

    <p>
    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>
    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>

    <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>

    <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>