examples/html-css-js/index.html 767 B raw
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
    <title>Norns</title>
7
    <link rel="manifest" href="https://norns.so/site.webmanifest">
8
    <meta name="theme-color" content="#121113">
9
    <meta name="description" content="Interoperable web components for decentralized apps">
10
    <style>
11
      body {
12
        min-height: 100vh;
13
        width: 100%;
14
        display: flex;
15
        align-items: center;
16
        justify-content: center;
17
        background-color: #121113;
18
        color: white;
19
      }
20
    </style>
21
</head>
22
<body>
23
  <div class="container">
24
    <connect-wallet></connect-wallet>
25
  </div>
26
  <script src="./components/connect-wallet.js"></script>
27
</body>
28
</html>