-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuploadphoto.html
65 lines (56 loc) · 2.22 KB
/
uploadphoto.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ViewFinder</title>
<!-- Load style sheets -->
<link rel="stylesheet" href=
"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.css">
<link href="https://fonts.googleapis.com/css?family=Catamaran:300,400,700" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="lib/bootstrap-tagsinput.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="./font-awesome/css/font-awesome.min.css">
<!-- Load any supplemental Javascript libraries here -->
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="script-upload.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typeahead.js/0.11.1/typeahead.bundle.min.js"></script>
<script src="lib/bootstrap-tagsinput.min.js"></script>
</head>
<body>
<div id="navigation">
<div class="row">
<div class="col-md-3">
<h1><a href="./index.html">ViewFinder</a></h1>
</div>
<div class="col-md-9">
<h3 id="Portfolio"><a class="active-tab" href="./portfolio.html"><i class="fa fa-picture-o" aria-hidden="true"></i> PORTFOLIO</a></h3>
<h3 id="Pinned"><a href="./pinned.html"><i class="fa fa-thumb-tack" aria-hidden="true"></i> PINNED</a></h3>
<h3 id="Inspiration"><a href="./index.html"><i class="fa fa-heart" aria-hidden="true"></i> INSPIRATION</a></h3>
<h3 id="Search"><a href="./search.html"><i class="fa fa-search" aria-hidden="true"></i> SEARCH</a></h3>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="content">
<h2 class="index">Photos</h2>
<div class="container">
<div class="row">
<div class="col-md-3" id="uploadphotos-col-1">
</div>
<div class="col-md-3" id="uploadphotos-col-2">
</div>
<div class="col-md-3" id="uploadphotos-col-3">
</div>
<div class="col-md-3" id="uploadphotos-col-4">
</div>
</div>
</div>
<br>
<br>
<button class = "btn" id = "upload-button">Upload</button>
</div>
</div>
</div>
</body>