-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (35 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/dropzone.css" />
<script src="js/jquery-3.3.1.min.js"></script>
<title>#Caption - Instagram caption and hashtag generator</title>
<script>
</script>
</head>
<body>
<div class="container">
<div class="col-sm-10 offset-sm-1 col-10 offset-10">
<h1 class="text-center caption-title">#Caption</h1>
</div>
<div class="col-sm-10 offset-sm-1 col-10 offset-10">
<h3 class="text-center caption-title">An instagram caption and hashtag generator</h3>
</div>
</div>
<br><br>
<div class="row justify-content-center">
<form action="imageUpload.php" method="post" enctype="multipart/form-data">
<input type="file" name="imageToUpload" id="imageToUpload" class="file-upload">
<label for="imageToUpload" class="insta-button">Choose a file...</label>
<input type="submit" value="Upload Image" name="submit" class="insta-button">
</form>
</div>
<script src="js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="js/jquery.filedrop.js"></script>
</body>
</html>