-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathquote_generator.html
More file actions
68 lines (66 loc) · 2.22 KB
/
quote_generator.html
File metadata and controls
68 lines (66 loc) · 2.22 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Sorry the Page has been blocked!</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<!-- <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script> -->
<script type="text/javascript" src="jquery.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script> -->
<script type="text/javascript" src="materialize/js/materialize.min.js"></script>
<script type="text/javascript" src="insert.js"></script>
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Dancing Script">
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Orbitron">
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Comfortaa">
<meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' http://* 'unsafe-inline'; script-src 'self' http://* 'unsafe-inline' 'unsafe-eval'" />
<style type="text/css">
/*body {
font-family: 'Tangerine',serif;
text-shadow: 4px 4px 4px #aaa;
}*/
.quote
{
font-family: 'Dancing Script';
font-weight:800;
font-weight:bold;
font-size:30px;
}
.quote {
quotes: "“" "”" "‘" "’";
}
.quote:before {
content: open-quote;
}
.quote:after {
content: close-quote;
}
.simple_text
{
font-family: 'Orbitron';
font-weight:bold;
}
.blocked_text{
font-family: 'Comfortaa';
font-weight: bold;
}
</style>
</head>
<body class="teal darken-1">
<div class="container">
<div class="row">
<div class="col s12">
<div class="card-panel light-blue accent-3">
<center><h4 class="simple_text">PRODUCTIFY</h4></center>
</div>
</div>
</div>
</div>
<center class="quote"></center>
</body>
<div class="footer" style="margin-top:200px;">
<center class="blocked_text">Sorry the page has been blocked by Productify.</center>
</div>
</html>