diff options
Diffstat (limited to 'index.html')
-rwxr-xr-x | index.html | 25 |
1 files changed, 17 insertions, 8 deletions
@@ -1,22 +1,31 @@ <!doctype html> +<!-- + Markup of the Netflix Stats Generator + @author Marvin Borner + @copyright Marvin Borner 2018 +--> <html lang="en"> + <head> <meta charset="UTF-8"> - <meta name="viewport" - content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> + <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Share+Tech+Mono"> + <link rel="stylesheet" href="assets/css/normalize.css"> <link rel="stylesheet" href="assets/css/main.css"> <title>Netflix Personal Stats Generator</title> </head> + <body> -<input class="CookieInput" type="text" placeholder="Type your cookie..."> + <input class="CookieInput" type="text" placeholder="Type your cookie..."> -<canvas id="WatchTimeChart"></canvas> -<canvas id="MostWatchedChart"></canvas> + <canvas id="WatchTimeChart"></canvas> + <canvas id="MostWatchedChart"></canvas> -<script src="assets/js/jQuery.js"></script> -<script src="assets/js/chart.js"></script> -<script src="assets/js/main.js"></script> + <script src="assets/js/jQuery.js"></script> + <script src="assets/js/chart.js"></script> + <script src="assets/js/main.js"></script> </body> + </html>
\ No newline at end of file |