-
Notifications
You must be signed in to change notification settings - Fork 0
/
about2.html
72 lines (61 loc) · 1.44 KB
/
about2.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
<!DOCTYPE html>
<html>
<head>
<title>
Cocktail Maker - About
</title>
<link rel="stylesheet" type="text/css" href="about.css">
</head>
<body>
<div id="navBar">
<!-- logo -->
<span id="logo">
<a href="home.html"> <img src="Cocktail_Maker.svg" height="100%"></a>
</span>
<span id="links">
<!-- About -->
<span class="navBox">
<a href="about2.html"> About </a>
</span>
<!-- Find Cocktails -->
<span class="navBox">
<a href="cocktails.html"> Find Cocktails </a>
</span>
</span>
</div>
<div class="container">
<div class="titleText">
Want to impress your guests? We have the recipes.
</div>
</div>
<h3>
We want to empower people to become knowledgeable cocktail mixers from the comfort of their home. With Cocktail Maker, you can:
</h3>
<div class="row">
<div class="column">
<div class="text">
Find the ingredients you need to make your favorite cocktails
</div>
<div class="image">
<img src="ingredients.jpg" width="100%">
</div>
</div>
<div class="column">
<div class="text">
Find the cocktails you can make with the ingredients you have
</div>
<div class="image">
<img src="red_cocktail.jpg" width="100%">
</div>
</div>
<div class="column">
<div class="text">
Sharpen your mixing skills with our weekly favorite cocktail
</div>
<div class="image">
<img src="pink_cocktail.jpg" width="100%">
</div>
</div>
</div>
</body>
</html>