-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (111 loc) · 4.25 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<html>
<head>
<!-- SEO -->
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Coffee Ipsum Generator</title>
<meta name="description" content="Generate random caffeinated scripts." />
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<!-- MOBILE -->
<meta id="viewport" name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, minimum-scale=1, maximum-scale=1" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="HandheldFriendly" content="True" />
<meta name="theme-color" content="#1994d2" />
<!-- STYLING -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="css/style.css" rel="stylesheet">
<!-- SCRIPTING -->
<script async src="https://use.fontawesome.com/7a1c961567.js"></script>
<script>
function clickDownloadButton(platform, position){
console.log("Event: Clicked DownloadButton " + platform + " " + position);
ga('send', {
hitType: 'event',
eventCategory: 'DownloadButton',
eventAction: 'click',
eventLabel: platform + ' - ' + position
});
}
</script>
</head>
<body>
<header class="">
<section class="main">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h1>Coffee Ipsum Generator</h1>
<p>Generate random caffeinated script.</p>
<a class="btn btn-default" onclick="addSentences()">Pull a shot</a>
</div>
</div>
</div>
</section>
</header>
<section class="text">
<div class="container">
<div class="row">
<div class="col text-center">
<div id="coffee-text">
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col">
<!-- SIGNATURE -->
<style>
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
a{
color: #a5a5a5;
text-decoration: none;
}
.signature-wrapper{
/* background-color: rgba(0,0,0,0.2); */
color: #a5a5a5;
}
.center-part{
width: 100%;
text-align: center;
}
.signature-text{
position: absolute;
text-align: center;
bottom: 0;
}
.copyright{
width: 100%;
font-family: 'Open Sans', sans-serif;
font-size: 8px;
text-align: center;
padding-bottom: 1em;
}
</style>
<div class="footer">
<a href="https://www.thedevgeek.com">
© <span id="currentYear">2019</span> The Dev Geek - Made with love in Seattle.
</a>
</div>
</div>
<script type="text/javascript">
var dt = new Date();
document.getElementById("currentYear").innerHTML = dt.getFullYear();
</script>
<!-- END SIGNATURE -->
</div>
</div>
</div>
</footer>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.8/js/all.js" integrity="sha384-SlE991lGASHoBfWbelyBPLsUlwY1GwNDJo3jSJO04KZ33K2bwfV9YBauFfnzvynJ" crossorigin="anonymous"></script>
<!-- <script src="js/typewriter.js"></script> -->
<script src="js/coffeeipsum-generator.js"></script>
</body>
</html>