-
Notifications
You must be signed in to change notification settings - Fork 0
/
check_out.html
173 lines (137 loc) · 3.51 KB
/
check_out.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
167
168
169
170
171
172
173
<!doctype html>
<html>
<style>
@media (max-width: 800px){
.options img{
position:relative;
bottom: 10px;
left: 10px;
}
.payment_methods #text{
position:relative;
bottom: 10px;
left: -90px;
}
.cash img{
position:relative;
top: 450px;
left: 230px;
}
.cash .middle{
position:relative;
top: 420px;
left:325px;
}
.online_banking img{
position:relative;
top: 580px;
right: 360px;
}
.online_banking .middle{
position:relative;
top: 580px;
left: -276px;
}
.bank img{
position:relative;
top: 360px;
right: 50px;
}
.bank .middle{
position:relative;
top: 300px;
left: 30px;
}
.footer div{
position :relative;
top:100px;
}
}
</style>
<head>
<meta charset="utf-8" />
<title>Happy Cup Cafe Checkout</title>
<link href="reset.css" rel="stylesheet">
<link rel="stylesheet" href="home_layout.css"/>
<link rel="stylesheet" href="home_styles.css"/>
</head>
<body>
<header>
<p>
<img src="home_logo.png" alt="Happy Cup Cafe Logo" width="100" height="100">
Happy Cup Cafe
</p>
</header>
<div class="options">
<p>
<img border="0" alt="choose 1" src="Name1.png" width="333" height="320">
</p>
</div>
<div class="payment_methods">
<h1 id="text"> Please select<br/> your <br/>preferred way <br/> of payment. </h1> </div>
<div class="cash">
<p>
<img border="0" alt="money picture" src="cash_money.png" width="150" height="150">
<div class="middle">
<a href="money.html">
<div class="text">Cash Money</div>
</div>
</a>
</p>
</div>
<div class="online_banking">
<p>
<a href="online_banking.html">
<img border="0" alt="online banking picture" src="online_banking.png" width="150" height="150">
<div class="middle">
<div class="text">Online Payment</div>
</div>
</a>
</p>
</div>
<div class="bank">
<p>
<a href="banking.html">
<img border="0" alt=" banking picture" src="banking.png" width="150" height="150">
<div class="middle">
<div class="text">Credit Card</div>
</div>
</a>
</p>
</div>
</div>
<footer>
<div class="row1">
<div class="column">
<p>About us:
<br/>
<a href="cup_support.html">Vision and Mission</a>
<br/>
<a href="cup_awards.html">Our Proudest Accomplishment</a>
<br/>
<a href="cup_coffee.html">Our Pride and Joy</a>
</p>
</div>
<div class="column">
<p>Contact us:<br/>
<img src="email.png" alt="telephone" width="30" height="30">
<a href="mailto:webmaster@example.com">Email address</a>
<br/>
<img src="telephone.png" alt="telephone" width="30" height="30" >
<a href="tel:+1234567890">Telephone Number</a><br/>
</p>
</div>
<div class="column">
<p>Sitemap:
<br/>
<a href="Privacy_Policy.html">Privacy Policy</a>
</p>
<img id="logo" src="cup_logo.png" alt="Happy Cup Cafe Logo" width="150" height="150">
</div>
<div class="small">
Copyright © Happy Cup Cafe INC. All rights reserved
</div>
</div>
</footer>
</body>
</html>