-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
103 lines (77 loc) · 3.37 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Culaccino</title>
<link rel="shortcut icon" type="image/x-icon" href="image/logo.png" />
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/socmed.css">
<!--<link rel="stylesheet" href="css/footer.css">-->
</head>
<body>
<!-- about section starts -->
<section class="about" id="about">
<h1 class="heading"> about us <span>why choose us</span> </h1>
<div class="row">
<div class="content">
<h3 class="title">HOW DID THIS BUSINESS START?</h3>
<p>We already have a background in making different pastries since we have our own bakeshop in Alabang, Muntinlupa City. We thought of adding more business and taking it to the next level. Year of 2019, our coffee shop opened to the public and sells freshly baked pastries and freshly brewed coffee.</p>
<br><br><br><br><br>
<div class="wrapper">
<div class="button">
<div class="icon">
<i class="fab fa-facebook-f"></i>
</div>
<a href="https://www.facebook.com/CulaccinoJ.J"><span>Facebook</span></a>
</div>
<div class="button">
<div class="icon">
<i class="fab fa-instagram"></i>
</div>
<a href="https://www.instagram.com/culaccinoj.j/"><span>Instagram</span></a>
</div>
<div class="button">
<div class="icon">
<i class="fas fa-phone"></i>
</div>
<a href="tel:0945 801 4544"><span>Phone</span></a>
</div>
<div class="button">
<div class="icon">
<i class="fa fa-envelope"></i>
</div>
<a href="mailto:[email protected]"><span>Gmail</span></a>
</div>
</div>
</div>
<div class="image">
<img src="image/logo1.png" alt="">
</div>
</div>
</div>
</section>
<!-- about section ends -->
<!-- footer section starts -->
<section class="footer">
<div id="menu-btn" class="fas fa-bars"></div>
<a href="home.html" class="logo"> culaccino <i class="fas fa-mug-hot"></i> </a>
<nav class="navbar">
<a href="home.html">home</a>
<a href="about.html">about</a>
<a href="index.html">menu</a>
<a href="contact.html">contact</a>
</nav>
<a href="index.html" class="logo" style="margin-right: 10%;"><i class="fas fa-shopping-cart"></i></a>
</section>
<!-- footer section ends -->
<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>
<!-- custom js file link -->
<script src="js/script.js"></script>
</body>
</html>