-
Notifications
You must be signed in to change notification settings - Fork 48
/
index.html
executable file
·90 lines (90 loc) · 2.97 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
<html>
<head>
<meta charset="UTF-8">
<title>Hashtagify - Generate hashtags for your Instagram Photo!</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Vinit Shahdeo">
<meta name="copyright" content="Vinit Shahdeo 2019"/>
<link href="./css/style.css" rel="stylesheet" media="screen">
<link href="./css/mobile-style.css" rel="stylesheet" media="screen">
<link rel="shortcut icon" href="./favicon.ico">
<link rel="stylesheet" href="https://www.webnots.com/resources/font-awesome/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Montserrat+Alternates:900" rel="stylesheet">
<style>
.webnots-notification-box {
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
color: #ffffff;
font-family: verdana, 'open sans', sans-serif;
margin-bottom: 25px;
padding: 10px 14px 10px 44px;
position: relative;
box-shadow: 0px 1px 5px #999;
}
.webnots-notification-box:before {
font-family: FontAwesome;
font-size: 21px;
left: 14px;
position: absolute;
}
.webnots-information {
background-color: #2196F3;
}
.webnots-question {
background-color: #f1c40f;
}
.webnots-question:before {
content: "\f128";
margin-left: 2px;
}
.webnots-tip {
background-color: #16a085;
}
.webnots-tip:before {
content: "\f0eb";
margin-left: 2px;
}
.title{
font-family: 'Montserrat Alternates', sans-serif;
}
.title h1{
font-size: 2.1em;
color: #2196F3
}
body {
font-family: 'Montserrat', sans-serif;
}
.button {
background-color: #2196F3; /* Green */
border: none;
color: white;
padding: 10px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
font-family: 'Montserrat Alternates', sans-serif;
cursor: pointer;
border-radius:12px;
}
</style>
</head>
<body>
<div class="title">
<h1>#Hashtagify!</h1>
<p>Generate hashtags for your Instagram Photo!</p>
</div>
<div class="dropzone" class="uploader">
<div class="info"></div>
<div class="hashtags"></div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<script type="text/javascript" src="./js/imgur.js"></script>
<script type="text/javascript" src="./js/upload.js"></script>
<script type="text/javascript"></script>
</body>
</html>
<!-- Made with love by Vinit Shahdeo -->