summaryrefslogtreecommitdiff
path: root/graphs/js/foodTruck/index.html
blob: 0bbc954a6cbd52a78f6809a7ae211ba62e2435b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Foodtruck</title>
    <link rel="stylesheet" href="static/style.css">


</head>

<body>
    <header>
        <h1 id="page-title">FoodTruck</h1>
        <p>Choose your order !</p>
        <button id="switch-button">
            <a href="#">Switch to Dirty Foodtruck</a>
        </button>
    </header>


    <div id="order">
    </div>

    <div id="display">
    </div>

    <footer>
        <p>"Being a hero means fighting back even when it seems impossible."</p>
    </footer>

</body>
<script src="static/failedOnload.js"></script>
<script src="data.js" onerror="scriptFailedLoad(this.src)"></script>
<script src="sleep.js" onerror="scriptFailedLoad(this.src)"></script>
<script src="static/index.js"></script>
<script src="foodTruck.js" onerror="scriptFailedLoad(this.src)"></script>

</html>