-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutlets.html
112 lines (107 loc) · 3.34 KB
/
outlets.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
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/WDLProject/css/outlet.css" />
<style>
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
transition: 0.3s;
width: 30%;
border-radius: 5px;
background: linear-gradient(180deg, white, yellow);
}
.card:hover {
box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.2);
}
img {
border-radius: 5px 5px 0 0;
}
.container {
padding: 2px 16px;
}
</style>
</head>
<body style="background: linear-gradient(0deg, red, orange, yellow);">
<br />
<img src="/WDLProject/res/Logo.png" class="float" width="100px" height="65px" />
<b><div class="w3-myfont1 fontcol">FoodWorld<sup>©</sup></div></b
>
<div class="w3-panel w3-yellow w3-border w3-myfont4">
<div style="padding: 10px 0px 10px 0px;">
<marquee>
We are proud to present you, our valuable business
partners...</marquee
>
</div>
</div>
<br />
<div class="w3-center">
<div class="w3-margin-left w3-row">
<div class="w3-third w3-center w3-margin-right card">
<img
src="/WDLProject/res/dominos.png"
alt="dominos"
style="width: 100px;"
/>
<h3>Dominos</h3>
</div>
<div class="w3-third w3-center w3-margin-right card">
<img
src="/WDLProject/res/subway.jpg"
alt="subway"
style="width: 100px;"
/>
<h3>Subway</h3>
</div>
<div class="w3-third w3-center card">
<img src="/WDLProject/res/BKK.png" alt="BKK" style="width: 100px;" />
<h3>Burger King</h3>
</div>
</div>
<br />
<div class="w3-margin-left w3-row">
<div class="w3-third w3-center w3-margin-right card">
<img src="/WDLProject/res/bk.png" alt="bk" style="width: 100px;" />
<h3>Baskin Robbins</h3>
</div>
<div class="w3-third w3-center w3-margin-right card">
<img
src="/WDLProject/res/dunkin.png"
alt="dunkin"
style="width: 100px;"
/>
<h3>Dunkin Donuts</h3>
</div>
<div class="w3-third w3-center card">
<img src="/WDLProject/res/kfc.png" alt="kfc" style="width: 100px;" />
<h3>KFC</h3>
</div>
</div>
<br />
<div class="w3-margin-left w3-row">
<div class="w3-third w3-center w3-margin-right card">
<img
src="/WDLProject/res/starbucks.jpg"
alt="starbucks"
style="width: 100px;"
/>
<h3>Starbucks</h3>
</div>
<div class="w3-third w3-center w3-margin-right card">
<img
src="/WDLProject/res/pizzahut.png"
alt="pizzahut"
style="width: 100px;"
/>
<h3>Pizza Hut</h3>
</div>
<div class="w3-third w3-center card">
<img src="/WDLProject/res/bg.jpg" alt="bg" style="width: 100px;" />
<h3>Belgian Waffle</h3>
</div>
</div>
</div>
</body>
</html>