-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtreats.html
76 lines (73 loc) · 1.97 KB
/
treats.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
<!DOCTYPE html>
<html>
<head>
<!-- Bootstrap -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet">
<!-- Below is my own styles.css -->
<link href="ButtersStyles.css" rel="stylesheet">
<title>Treats!</title>
</head>
<body>
<h1>Butters wants some treats!</h1>
<div class="row">
<div class="col-sm-2">
<ul>
<br>
<li>Butters</li>
<li>Deserves</li>
<li>Delicious</li>
<li>Treats!</li>
<li>Because</li>
<li>He's such a</li>
<li>CUTIE!</li>
</ul></div>
<div class="col-sm-6">
<img src="BOinKitchen.jpg" alt="in kitchen" width="75%">
</div>
<div class="col-sm-4">
<table border="5" id="foodsTable">
<tr style="background-color:lightblue" >
<th>Item</th>
<th>Cost</th>
</tr>
<tr>
<td>Salmon</td>
<td>$2.00</td>
</tr>
<tr>
<td>Chicken</td>
<td>$1.50</td>
</tr>
<tr>
<td>Ice</td>
<td>$0.10</td>
</tr>
<tr>
<td>Apples</td>
<td>$1.00</td>
</tr>
<tr>
<td>Tripe</td>
<td>$1.00</td>
</tr>
<tr>
<td>PeanutButter</td>
<td>$1.00</td>
</tr>
<tr>
<td>Kisses & Hugs!</td>
<td>FREE</td>
</tr>
</table></div>
</div>
<br>
<div>
<button type="button" class="btn btn-primary" onclick="window.location.href = 'index.html';">Homepage</button>
<br><br>
<button type="button" class="btn btn-primary" onclick="window.location.href = 'bff.html';">BFFs!</button>
<button type="button" class="btn btn-primary" onclick="window.location.href = 'tricks.html';">Tricks!</button>
</div>
</body>
<script>
</script>
</html>