-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
64 lines (56 loc) · 2.54 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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-81213477-4', 'auto');
ga('send', 'pageview');
</script>
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-81213477-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments)};
gtag('js', new Date());
gtag('config', 'UA-81213477-4');
</script>
<script type="text/javascript" src="script.js">
</script>
<link rel="stylesheet" href="style.css"></link>
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans" />
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet'>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"></link>
<title>Random Number Generator</title>
<meta charset="UTF-8">
<meta name="description" content="A Random Number Generator, with an amazing ui.">
<meta name="keywords" content="rng, random, random number, random number generator, packersrulegopack, sheshank">
<meta name="author" content="Sheshank Shankar">
</head>
<body>
<div class="heading">
<img id="header-image" class="centeredImage bouncy" style="width:90%;" src="logo.svg"/>
</div>
<br/>
<br/>
<div class="heading specialheading">
<div class="input">
<h2 class="centeredText bouncy" style="display:inline">Min Number:</h1>
<input type="text" placeholder="Min..." id="minInput" class="numBox bouncy" style="display:inline"/>
<h2 class="centeredText bouncy" style="display:inline">Max Number:</h1>
<input type="text" placeholder="Max..." id="maxInput" class="numBox bouncy" style="display:inline"/>
<br>
<center>
<input type="button" class="button bouncy" value="Generate!" onclick="onClick()"></input>
</center>
</div>
<h2 class="centeredText bouncy">Output:</h2>
<p id="output"></p>
</div>
<iframe data-aa='746616' src='//ad.a-ads.com/746616?size=990x90' scrolling='no' style='width:990px; height:90px; border:0px; padding:0;overflow:hidden' allowtransparency='true'></iframe>
</body>
</html>