-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblog.html
166 lines (154 loc) · 5.35 KB
/
blog.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Starbuzz Coffee - blog</title>
<link rel="stylesheet" type="text/css" href="starbuzz.css">
</head>
<body>
<header class="top">
<img id="headerLogo"
src="images/headerLogo.gif" alt="Starbuzz Coffee logo image">
<img id="headerSlogan"
src="images/headerSlogan.gif" alt="Providing all the caffeine you need to power your life.">
</header>
<nav>
<ul>
<li><a href="index.html">HOME</a></li>
<li class="selected"><a href="blog.html">BLOG</a></li>
<li><a href="styledform.html">FORM</a></li>
</ul>
</nav>
<div id="award">
<img src="images/award.gif"
alt="Roaster of the Year award">
</div>
<div id="tableContainer">
<div id="tableRow">
<section id="drinks">
<h1>BEVERAGES</h1>
<p>House Blend, $1.49</p>
<p>Mocha Cafe Latte, $2.35</p>
<p>Cappuccino, $1.89</p>
<p>Chai Tea, $1.85</p>
<h1>ELIXIRS</h1>
<p>
We proudly serve elixirs brewed by our friends
at the Head First Lounge.
</p>
<p>Green Tea Cooler, $2.99</p>
<p>Raspberry Ice Concentration, $2.99</p>
<p>Blueberry Bliss Elixir, $2.99</p>
<p>Cranberry Antioxidant Blast, $2.99</p>
<p>Chai Chiller, $2.99</p>
<p>Black Brain Brew, $2.99</p>
</section>
<section id="blog">
<article>
<header>
<h1>Starbuzz meets social media</h1>
<time datetime="2012-03-12">3/12/2012</time>
</header>
<p>
Here at Starbuzz we're embracing the social media craze.
In fact, we're going further than any of our competitors and
we're very close to announcing a revolutionary new product that
links your coffee drinking directly to your social
network. Forget "checking in"; we're going way beyond that, and
with this new product every sip of smooth, aromatic, hot Starbuzz
blend is going to to be shared with your social network.
</p>
<p>
Sound like science fiction? It's not; I'm already
testing our final prototype social network cup as I write this,
which links you, the drinker, right to your favorite social
networks. We've made a huge investment to make this happen
and we've created a reusable coffee cup complete with RFID,
NFC, Bluetooth, and Wifi (not to mention a few more things the tech
folks know about, because hey, I'm just the coffee guy).
</p>
<p>
So, keep your eyes out for this amazing new cup. And I'll
be releasing a video teaser soon to tell you all about this
new invention, straight from Starbuzz Coffee.
</p>
<video controls width="512" height="288" >
<source src="video/tweetsip.mp4" type='video/mp4; codecs="avc1.42E01E,mp4a.40.2"'>
<source src="video/tweetsip.webm" type='video/webm; codecs="vp8,vorbis"'>
<source src="video/tweetsip.ogv" type='video/ogg; codecs="theora,vorbis"'>
<p>Sorry,your browser doesn't support the video element</p>
</video>
</article>
<article>
<header>
<h1>Starbuzz uses computer science</h1>
<time datetime="2012-03-10">3/10/2012</time>
</header>
<p>
Have you ever noticed how efficient a Starbuzz Coffee
house is? The lines alway move fast, and despite the
astronomical number of different drinks any customer can
order, we have your drink up, hot (or cold if that's the
way you want it) and ready in seconds. How do we do it?
</p>
<p>
To pull this off, we take advantage of the latest and
greatest in computer science. In fact, we train
our staff to be one big distributed computer. The cashiers
create the orders for the distributed computer, complete
with your name and the drinks special instructions. Then
our specialized drink makers grab the next cup
and go about working on your order until it's finished.
</p>
<p>
With this design, we are able to horizontally scale our operation
any time we want. All we need to do is add more cashiers
and drink makers (not to mention a fair amount of support
staff you never see) as the customer flow grows.
</p>
</article>
<article>
<header>
<h1>Most unique patron of the month </h1>
<time datetime="2012-02-18">2/18/2012</time>
</header>
<p>
Our most unique patron of the month award goes to a
customer in Poulsbo, Washington, whose daily morning order
is a "six-splenda, no-foam, 130-degree non-fat-soy latte,
with the splenda stirred in before the milk is added." Do we
have unique customers or what?
</p>
</article>
</section>
<aside>
<p class="beanheading">
<img src="images/bag.gif" alt="Bean Machine bag">
<br>
ORDER ONLINE
with the
<a href="form.html">BEAN MACHINE</a>
<br>
<span class="slogan">
FAST <br>
FRESH <br>
TO YOUR DOOR <br>
</span>
</p>
<p>
Why wait? You can order all our fine coffees right from the Internet with our new,
automated Bean Machine. How does it work? Just click on the Bean Machine link,
enter your order, and behind the scenes, your coffee is roasted, ground
(if you want), packaged, and shipped to your door.
</p>
</aside>
</div> <!-- tableRow -->
</div> <!-- tableContainer -->
<footer>
© 2012, Starbuzz Coffee
<br>
All trademarks and registered trademarks appearing on
this site are the property of their respective owners.
</footer>
</body>
</html>