« get me outta code hell

index.html « popup « extension - interactive-bgm - Browser extension that adds background music based on the site you're browsing
about summary refs log tree commit diff
path: root/extension/popup/index.html
blob: 9ddbec4639d614431c0de7626005b6cb3d61ba53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Interactive BGM</title>
        <link rel="stylesheet" href="style.css">
    </head>
    <body>
        <div class="screen visible" id="loading-screen">
            <p>Loading...</p>
        </div>
        <div class="screen" id="main-screen">
            <h1 id="hostname"></h1>
            <h2>Tracks</h2>
            <ul id="track-list"></ul>
        </div>
        <div class="screen" id="invalid-host-screen">
            <p>Sorry, this page doesn't appear to have a hostname. We can't configure music here.</p>
        </div>
        <script src="main.js"></script>
    </body>
</html>