-
Notifications
You must be signed in to change notification settings - Fork 0
/
cup_about_us.html
139 lines (109 loc) · 4.69 KB
/
cup_about_us.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="keywords" content="cafe,food,restaurant" />
<title>About Us</title>
<link href="reset.css" rel="stylesheet">
<link rel="stylesheet" href="home_layout.css"/>
<link rel="stylesheet" href="home_styles.css"/>
<body>
<style>
img.abt_us{
margin: 5% 2% auto auto;
}
h1.abt_us2{
margin-left: 4%;
margin-top: 3%;
}
article.abt_us3{
background-color: cyan;
color: black;
width: 64%;
margin-left: 4%;
margin-top: 2%;
}
@media (max-width: 500px) {
body{
min-width: 50%;
}
}
</style>
<header>
<p>
<img src="home_logo.png" alt="Happy Cup Cafe Logo" width="100" height="100">
Happy Cup Cafe
</p>
</header>
<img class="abt_us" src="V&M.png" alt="Vision & Mision" align="right" width="30%">
<h1 class="abt_us2">
About Us
</h1>
<article class="abt_us3">
<h2>Vision & Mission</h2>
<br>
<br>
<h3>OUR VISION</h3>
<p>
To be Asia Pacific's leading white coffee brand, providing high quality products to customers globally.
</p>
<br>
<h3>OUR MISSION</h3>
<p>
Our People: We believe that our people are our assets
We acknowledge and appreciate our people as those who grow with us and for their full dedication. We value them for their effort and what they are able to bring to the company,
hence we constantly provide a platform and opportunities for career growth and enrichment of knowledge.
We cultivate the passion of delighting our consumers into all our staffs to bring forth the best experience possible.
</p>
<br>
<h3>Community: We nurture the community</h3>
<p>
We are aware and committed to our community hence we operate our business in a manner that does not compromise the wellness of our future generations.
We are passionate about our corporate responsibilities and do our best to provide for the community in different ways, from doing our part for the earth we live in to providing underprivileged children with better homes. We will not look lightly upon our social responsibilities as we believe in giving back to the community as part of the effort towards a better future.
</p>
<br>
<h3>Mother Earth: We do our part in saving Mother Earth</h3>
<p>
We are attuned with the growing needs to nurture our mother earth and to do our part in caring for the environment.
With this, we share and grow the passion and knowledge of caring for the environment with our partners and consumers for them to live this together with us as part of our corporate values.
Investors: We focus on prospering our investors
We are dedicated to growing and maximizing the financial rewards of our investors as we see it as a platform for our company to continue to provide to our consumers and the community.
</p>
<br>
<br>
</article>
<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>