<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <script src="index.js"></script>

    <!--Question 4d-->
    <link rel="stylesheet" href="#">
    <title>Lab 5</title>
</head>
<body>
		<!--Question 4c-->
        <img src="#"/>
		
        <h1>Welcome to the CLC Lending Site</h1>
		
        <!--Question 4a-->
        <h3>Designed by ____ </h3>

        <!--Question 4b-->

        
    

        <table border="1" id="book-list"> 
            <tr id="header-row">
                <th>Title</th>
                <th>Author</th>
                <th>ISBN</th>
                <th>Available?</th>
            </tr>
            <tr class="rows">
                <td>A Byte of Python</td>
                <td>Swaroop C H</td>
                <td>9781514828144</td>
                <td>Yes</td>
            </tr>
            <tr class="rows">
                <td>Artificial Intelligence: Foundations of Computational Agents</td>
                <td>David Poole and Alan Mackworth</td>
                <td>9781108171021</td>
                <td>No</td>
            </tr>
            <tr class="rows">
                <td>How to Think Like a Computer Scientist: C++</td>
                <td>Allen B. Downey</td>
                <td>9781441419057</td>
                <td>No</td>
            </tr>
            <tr class="rows">
                <td>How to Think Like a Computer Scientist: Java</td>
                <td>Allen B. Downey</td>
                <td>9787308040365</td>
                <td>Yes</td>
            </tr>
            <tr class="rows">
                <td>Philosophy of Computer Science</td>
                <td>William J. Rapaport</td>
                <td>9781563249914</td>
                <td>No</td>
            </tr>
        </table>
        <!--Question 6-->
        <button onclick="#">Click me</button>
    </body>
</html>