aboutsummaryrefslogtreecommitdiff
path: root/mottovote/public/index.html
blob: 4e64cb8fdbe951db09f0945059c22fe423f70e32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Motto Vote</title>
    <link rel="stylesheet" href="https://unpkg.com/purecss@2.0.3/build/pure-min.css"
        integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ" crossorigin="anonymous" />
    <link rel="stylesheet" href="style.css" type="text/css" media="all" />
</head>

<body>

    <main>
        <div id="vote"></div>
        <button class="pure-button pure-button-primary" id="voteButton">Vote!</button>    
    </main>
    
    <script src="script.js"></script>
</body>

</html>