Skip to content
Snippets Groups Projects
Select Git revision
  • f8e9be04dff8555e8669c978dba41274fd2298c0
  • main default
  • logRegressionVisuals
  • Dashboard
  • explainerAnnotation
  • DT-Class-Design
  • WIP-4-ModelCreation-class
  • Data_Ingestion_Class_Creation
  • 3-dummy-issue
  • 5-feature
10 results

__init__.py

Blame
  • index.html 1.81 KiB
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <script src="index.js"></script>
    
        <!--Question 5-->
        <link rel="stylesheet" href="#">
        <title>Lab 5</title>
    </head>
    <body>
    		<!--Question 4-->
            <img src="#"/>
    		
            <h1>Welcome to the CLC Lending Site</h1>
    		
            <!--Question 2-->
            <h3>Designed by ____ </h3>
    
            <!--Question 3-->
    
            
        
    
            <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 10-->
            <button onclick="#">Click me</button>
        </body>
    </html>