-
Notifications
You must be signed in to change notification settings - Fork 0
/
mockup.html
92 lines (84 loc) · 4.56 KB
/
mockup.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
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Mock up Page</title>
<!-- favicon -->
<link rel="icon" type="image/png"
href="https://thestarvingcoder.github.io/favorite_band/assets/images/favicon.ico?" />
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Font Awesome -->
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<!-- Roboto Font -->
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="https://thestarvingcoder.github.io/favorite_band/assets/styles/style.css">
</head>
<body>
<!-- nav bar code -->
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="https://thestarvingcoder.github.io/favorite_band/index.html">Pink Floyd</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a href="https://thestarvingcoder.github.io/favorite_band/band.html">The Band</a></li>
<li><a href="https://thestarvingcoder.github.io/favorite_band/events.html">Events</a></li>
<li><a href="https://thestarvingcoder.github.io/favorite_band/oldbutgold.html">Old but Gold</a></li>
<li><a href="https://thestarvingcoder.github.io/favorite_band/contact.html">Contact Us!</a></li>
<li><a href="https://thestarvingcoder.github.io/favorite_band/mockup.html">Mock up Page</a></li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid center ">
<h1 class="center">These mock ups used Balsamiq Mockups 3</h1>
<div class="row">
<div class="col-md-12">
<img src="https://thestarvingcoder.github.io/favorite_band/assets/images/Band_Phone_Home.png"
class="img-thumbnail padding center" alt="Band Phone Home">
<img src="https://thestarvingcoder.github.io/favorite_band/assets/images/Band_Phone_Band_Page.png"
class="img-thumbnail padding center" alt="Band Phone Band">
<img src="https://thestarvingcoder.github.io/favorite_band/assets/images/Band_Phone_Old_but_Gold.png"
class="img-thumbnail padding center" alt="Band Phone Old but Gold">
<img src="https://thestarvingcoder.github.io/favorite_band/assets/images/Band_Phone_Events_Page.png"
class="img-thumbnail padding center" alt="Band Phone Events">
<img src="https://thestarvingcoder.github.io/favorite_band/assets/images/Band_Phone_Contact_Us.png"
class="img-thumbnail padding center" alt="Band Phone Contact Us">
<img src="https://thestarvingcoder.github.io/favorite_band/assets/images/Band_Home.png"
class="img-thumbnail padding center" alt="Band Home">
<img src="https://thestarvingcoder.github.io/favorite_band/assets/images/Band_Page.png"
class="img-thumbnail padding center" alt="Band Page">
<img src="https://thestarvingcoder.github.io/favorite_band/assets/images/Band_Events.png"
class="img-thumbnail padding center" alt="Band Events">
<img src="https://thestarvingcoder.github.io/favorite_band/assets/images/Band_contacts_us.png"
class="img-thumbnail padding center" alt="Band Contact Us">
<img src="https://thestarvingcoder.github.io/favorite_band/assets/images/Band_Old_but_Gold.png"
class="img-thumbnail padding center" alt="Band old but Gold">
</div>
</div>
</div>
<!-- Footer -->
<footer class="container-fluid center">
<i class="fa fa-facebook-square 5x" aria-hidden="false"></i>
<i class="fa fa-spotify" aria-hidden="false"></i>
<i class="fa fa-twitter-square" aria-hidden="false"></i>
<i class="fa fa-instagram" aria-hidden="false"></i>
</footer>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Bootstrap JS -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</body>
</html>