-
Notifications
You must be signed in to change notification settings - Fork 0
/
boba-downtown-cheap-or-top-rated.html
59 lines (53 loc) · 1.96 KB
/
boba-downtown-cheap-or-top-rated.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Major+Mono+Display&family=Urbanist&display=swap" rel="stylesheet">
<style>
* {
box-sizing: border-box;
}
.row {
display: flex;
}
/* Create two equal columns that sits next to each other */
.column {
display: flex;
flex: 50.0%;
padding: 0px;
background-size: contain
}
.vl {
border-left: 4px solid rgb(255, 255, 255);
height:auto;
z-index: 998;
}
</style>
</head>
<body>
<div class="location-text">Choose your Preference</div>
<div class="row">
<a href="cheap-downtown-boba.html">
<div class="column">
<img src="https://images.unsplash.com/photo-1620878439129-177b2d18864c?ixlib=-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8cmVzdGF1cmFudCUyMGJhY2tncm91bmR8ZW58MHx8MHx8fDA%3D&w=1000&q=80"
alt="Cheap"
width="100%"
height="auto">
</div>
</a>
<a href="cheap-downtown-boba.html" class="button-link-cheap">Cheap</a>
<div class="vl"></div>
<a href="top-rated-downtown-boba.html">
<div class="column">
<img src="https://images.unsplash.com/photo-1578474846511-04ba529f0b88?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8ZmFuY3klMjByZXN0YXVyYW50fGVufDB8fDB8fHww&w=1000&q=80"
alt="Top Rated"
width="100%"
height="auto">
</div>
</a>
<a href="top-rated-downtown-boba.html" class="button-link-top-rated">Top Rated</a>
</div>
</body>