Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

index.html

Blame
  • Forked from Dr.Pirmann / CI101Week56Lab
    21 commits ahead of the upstream repository.
    index.html 2.25 KiB
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <script src="index.js"></script>
    
        <!--Question 4d-->
        <link rel="stylesheet" href="stylesheet.css">
        <title>Lab 5</title>
    </head>
    <body>
    		<!--Question 4c-->
            <img src="https://gitlab.cci.drexel.edu/ww398/CI101Week56Lab/raw/master/logos/cci-2.png"/>
    		
            <h1>Welcome to the CLC Lending Site</h1>
    		
            <!--Question 4a-->
            <h3>Designed by WanZhen  Wen and Dawei Chi</h3>
    
            <!--Question 4b-->
           <p>"Welcome to my page! This site is for a new programming learner."</p>
            
        
    
            <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>
                <tr class="rows">
                <td>Computer Programming for Beginners: Fundamentals of Programming Terms and Concepts</td>
                <td>Nathan Clark</td>
                <td>9781719439558</td>
                <td>Yes</td>
                </tr>
            </table>
            <!--Question 6-->
            <button onclick="goToCCI()">Click me</button>
        </body>
    </html>