-
Notifications
You must be signed in to change notification settings - Fork 0
/
stock_results2.html
128 lines (113 loc) · 4.59 KB
/
stock_results2.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Party Planner</title>
<link rel="icon" href="images/logo.png">
<!-- Bootstrap -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<style>
p {
font-size: 14pt;
}
img {
width: auto;
height: auto;
max-width: 100%;
max-height: 90%;
}
.available {
color: green;
float: left;
}
.notavailable {
color: red;
float: left;
}
.cart {
float: right;
}
</style>
<body>
<div class='col-md-4' style="padding-left:0;">
<img src="images/half-logo.png" max-height="90%"></img>
</div>
<div class='col-md-8'>
<div class='row' style="margin-bottom: 40px;">
<div class='col-md-4' style="margin-right: 40px;">
<h1>results</h1>
</div>
<div class='col-md-4'>
<div class="btn-group" style="margin-top:20px; float:right">
<a role="button" class="btn btn-danger" href="index.html" style="font-size:12pt;">restart</a>
</div>
</div>
</div>
<div class='row' style="margin-bottom: 40px;">
<div class='col-md-4' style="margin-right: 40px;">
<img src="http://scene7.targetimg1.com/is/image/Target/14899129?wid=480&hei=480"></img>
<h4>$2.00</h4>
<p>Spritz™ Solid Dinner Plates Black 9" 10 Ct</p>
<p> <span class="available">Available</span>
<span class="cart"><button class="btn btn-danger">+ Add to Cart</button></span>
</p>
</div>
<div class='col-md-4'>
<img src="http://scene7.targetimg1.com/is/image/Target/50082705?wid=480&hei=480"></img>
<h4>$4.00</h4>
<p>Paper Cups Gold Foil Printed (10 Count) Spritz™</p>
<p> <span class="notavailable">Not Available</span></p>
</div>
</div>
<div class='row' style="margin-bottom: 40px;">
<div class='col-md-4' style="margin-right: 40px;">
<img src="http://scene7.targetimg1.com/is/image/Target/21552720?wid=480&hei=480"></img>
<h4>$4.00</h4>
<p>Spritz™ Champagne Flutes - Gold (4Count)</p>
<p> <span class="notavailable">Not Available</span></p>
</div>
<div class='col-md-4'>
<img src="http://scene7.targetimg1.com/is/image/Target/16603595?wid=480&hei=480"></img>
<h4>$4.00</h4>
<p>Spritz™ Banners 80" Black</p>
<p> <span class="available">Available</span>
<span class="cart"><button class="btn btn-danger">+ Add to Cart</button></span>
</p>
</div>
</div>
<div class='row' style="margin-bottom: 40px;">
<div class='col-md-4' style="margin-right: 40px;">
<img src="http://scene7.targetimg1.com/is/image/Target/49167345?wid=480&hei=480"></img>
<h4>$22.49</h4>
<p>10lt. Heavy Duty Drop String Lights - Smith & Hawken™</p>
<p> <span class="available">Available</span>
<span class="cart"><button class="btn btn-danger">+ Add to Cart</button></span>
</p>
</div>
<div class='col-md-4'>
<img src="http://scene7.targetimg1.com/is/image/Target/51097911?wid=480&hei=480"></img>
<h4>$8.90</h4>
<p>Candy Dish White Ceramic Assorted Letters</p>
<p> <span class="available">Available</span>
<span class="cart"><button class="btn btn-danger">+ Add to Cart</button></span>
</p>
</div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>