You are on page 1of 2

<!

DOCTYPE html>
<html lang="en‐US">
    
    <head>
        <meta charset="utf‐8" />
        <title>Lab 1: About</title>
        <link href="css/stylesheet.css" rel="stylesheet" type="text/css">
        <link href="https://fonts.googleapis.com/css2?family=Pacifico" 
rel="stylesheet">
    </head>
    <body>
        <header>
            <h1> About </h1>
        </header>
        <hr />
        <nav>
            <a href="index.html">Home</a>
            <a href="about.html">About</a>
            <a href="contact.html">Contact</a>
            
        </nav>
        <br /><br />
        <main>
            <div id="content">
                <table>
                    <tr id="table‐header">
                        <td><strong>Programming Language</strong></td>
                        <td><strong>Years Experience</strong></td>
                    </tr>
                    <tr class="table‐row">
                        <td>Java</td>
                        <td>2</td>
                    </tr>
                    <tr class="table‐row">
                        <td>C++</td>
                        <td>2</td>
                    </tr>
                    <tr class="table‐row">
                        <td>Python</td>
                        <td>1</td>
                    </tr>
                </table>
            </div>
            <div>
                <p>My Hobbies:</p>
                <ul>
                    <li>Programming: I program for school and sometimes at 
work.</li>
                    <li>Reading: I enjoy reading a lot of internet content 
including Reddit.</li>
                    <li>Movies: I watch them over the internet.</li>
                </ul>
            </div>
  
        </main>
        
        <footer>
            
            <div>
                <figure>
                    <img src="img/CSUMB‐logo.png" alt="Picture of CSUMB logo" 
style="float:left";/>
                </figure>
            </div>
            <div>
                CST336 Internet Programming. 2020&copy; James <br />
                <strong>Disclaimer:</strong> The information in this website is 
fictitious.  <br />
                It is used for academic purposes only.
            </div>
        </footer>
        
    </body>

</html>

You might also like