-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
44 lines (42 loc) · 2.05 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
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="cs">
<head>
<title>Nahodný Slušný Čech</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width">
<meta name="geo.region" content="CZ">
<meta name="keywords" content="generator,slusny cech">
<meta name="Description" content="Random generator of hate comments.">
<meta name="theme-color" content="#222222">
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/csshake.min.css">
<link rel="manifest" href="manifest.webmanifest">
</head>
<body class="preload">
<br/>
<div class="container">
<h2>Nahodný Slušný Čech</h2>
<label for="rageFactor">Faktor hněvu: </label>
<input class="preload" type="range" min="0" max="10" value="1" id="rageFactor" onchange="changeBackground();"/><br/><br/>
<button type="button" class="myButton" onclick="generatePost();" id="postButton">Generuj názor</button>
<br/><br/>
<div id="post" class="bubble-content">
</div>
<div class="footer">
<a href="https://github.com/jkremser/nahodny-slusny-cech"><i class="fa fa-github"></i>
https://github.com/jkremser/nahodny-slusny-cech</a>
</div>
</div>
<script src="js/lodash.min.js" type="text/javascript"></script>
<script src="js/generator.js" type="text/javascript"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-99597229-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>