-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnewalbum.html
52 lines (42 loc) · 1.56 KB
/
newalbum.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
<!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="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.10.0.min.js"></script>
<script>
$(document).ready(function(){
document.getElementById("upload").onclick = function(){
window.location.href = "./uploadphoto.html";
};
});
</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="col-md-6" >
<button class="index" id = "upload">Upload Photos</button>
</div>
</body>
</html>