Skip to content
Snippets Groups Projects
Test.h 2.19 KiB
Newer Older
const char MAIN_page[] PROGMEM = R"=====(

<html>
    <head>
        <title>LEMUR Paper Boat</title>
    <style>
        h2 {
            color: orange;
        }
        h3 {
            color: #2274AF;
        }
        body {
            background-color: black;
            text-align: center;
            color: white;
            font-family: Arial, Helvetica, sans-serif;
        }
        .header{
            padding: 20px;
            text-align: center;
            background: black;
            color: white;
        }
        .button {
            background-color: #4CAF50;
            border: none;
            color: white;
            padding: 15px 32px;
            text-align: center;
            text-decoration: none;
        display: inline-block;
            font-size: 16px;
            margin: 4px 2px;
            cursor: pointer;
        }
        .button1 {
            background-color: red;
        }
        table, th, td {
            border: 1px solid black;
            padding: 10px;
        }
        .footer {
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
            background-color: black;
            color: white;
            text-align: center;
        }
    </style>

    </head>

<div class="header">
    <h1>Paper Boat</h1>
</div>

<body>

    <button class="button">ON</button>
    <button class="button button1">OFF</button>


<div class="table">
    <table align="center">
        <tr>
            <th>&#8598;</th>
            <th>&#8593;</th>
            <th>&#8599;</th>
        </tr>
        <tr>
            <td>&#8592;</td>
            <td><img src="https://s7d2.scene7.com/is/image/Fathead/lgo_ncaa_ucla_bruins?layer=comp&fit=constrain&hei=300&wid=300&fmt=png-alpha&qlt=95,0&op_sharpen=1&resMode=bicub&op_usm=0.0,0.0,0,0&iccEmbed=0" alt="bruin" style="width:200px"></td>
            <td>&#8594;</th>
        </tr>
            <tr>
            <td>&#8601;</td>
            <td>&#8595;</td>
            <td>&#8600;</td>
        </tr>
    </table>
</div>

<div class="footer">
    <h2>LEMUR</h2>
    <h4>The Laboratory of Embedded Machines and Ubiquitous Robots</h4>
    <h3>UCLA Electrical Engineering</h3>
</div>

</body>
</html>

)=====";