-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIntroPage.html
66 lines (48 loc) · 1.63 KB
/
IntroPage.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
<!doctype html>
<html>
<head>
<script src="https://code.jquery.com/jquery-3.2.1.js" integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE=" crossorigin="anonymous"></script>
<style type="text/css" media="screen">
body{
background-color: #D8D8D8;
}
h1 {
color: #300B00;
font-family: Futura;
font-weight: bold;
font-size: 45px;
}
h3 {
color: #A9927D;
font-family: Futura;
font-size: 16px;
}
p {
color: #300B00;
font-family: Futura;
font-size: 14px;
}
</style>
</head>
<body>
<img style="display: inline;" src="coffeeIcon.jpg" alt="logo" />
<h1 style="display: inline;">Coffee Info</h1>
</br> </br>
<p> Not sure what those fancy names mean? </p>
<p> We're here to help! </p>
</br>
<h3> Macchiato: </h3>
<p> Espresso is poured on top instead of being stirred into the drink. </p>
<h3> Americano: </h3>
<p> Made from espresso and water only. </p>
<h3> Frappuccino: </h3>
<p> Blended drinks, typically made with coffee. Often come with whipped cream and drizzle. </p>
<h3> Latte: </h3>
<p> Made with steamed milk and shots of espresso, with any flavor of milk, and can be hot or cold. </p>
<h3> Mocha: </h3>
<p> Are like lattes, they are made of espressos and milk, but tend to include chocolate. </p>
<h3> Cappuccino: </h3>
<p> Made solely of steamed milk and espresso, but tend to be mainly comprised of foam. </p>
<script src="index.js"></script>
</body>
</html>