-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 2.1 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Toggle Dark Mode</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link rel="shortcut icon" href="/assets/favicon.ico">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body class="theme-auto">
<header class="header">
<div class="select">
<i class="material-icons">palette</i>
<select class="select__input" id="selTheme">
<option value="auto">Auto</option>
<option value="light">Light</option>
<option value="dark">Dark</option>
</select>
</div>
</header>
<main class="main">
<h1>DARK</h1>
<p>
When two children go missing in a small German town, its sinful past is exposed along with the double lives and fractured relationships that exist among four fam
ilies as they search for the kids. The mystery-drama series introduces an intricate puzzle filled with twists that includes a web of curious characters, all of whom have a connection to the town's troubled history -- whether they know it or not. The story includes supernatural elements that tie back to the same town in 1986. "Dark" represents the first German original series produced for Netflix
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur augue tellus, iaculis ac laoreet ac, elementum sit amet eros. Maecenas ut urna sodales, varius nisl in, posuere neque. Vestibulum eleifend justo ut enim tempor eleifend. In hac habitasse platea dictumst. Fusce maximus elementum nisi, ac cursus libero feugiat quis. Curabitur eleifend orci quis venenatis porttitor. Donec pellentesque congue arcu vel efficitur. Duis et neque at lacus vulputate pulvinar. Vestibulum ex tellus, rutrum vitae nisl posuere, cursus tempor mi. Nullam cursus eget metus non maximus.
</p>
</main>
<script src="index.js" charset="utf-8"></script>
</body>
</html>