forked from magnum6actual/flipoff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (46 loc) · 1.72 KB
/
index.html
File metadata and controls
50 lines (46 loc) · 1.72 KB
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
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#111111">
<title>FlipOff. — Free Split-Flap Display for Any TV</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/board.css">
<link rel="stylesheet" href="css/tile.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<div class="page-frame">
<!-- Header -->
<header class="header">
<div class="header-logo">FlipOff.</div>
<nav class="header-nav">
<a href="#features">Features</a>
<a href="#pricing">Pricing</a>
<button class="volume-icon" id="volume-btn" title="Toggle sound">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon>
<path d="M19.07 4.93a10 10 0 0 1 0 14.14"></path>
<path d="M15.54 8.46a5 5 0 0 1 0 7.07"></path>
</svg>
</button>
</nav>
</header>
<!-- Hero -->
<section class="hero">
<h1>Turn any TV into a retro split-flap display.</h1>
<p class="subtitle">The classic flip-board look, without the $3,500 hardware.</p>
<div class="hero-cta">
<input type="email" placeholder="you@example.com">
<button id="cta-btn">Get Early Access</button>
</div>
</section>
<!-- Board -->
<section class="board-section" id="board-container">
</section>
</div>
<script type="module" src="js/main.js"></script>
</body>
</html>