-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout-us.html
40 lines (37 loc) · 1.38 KB
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body class="about-us">
<nav>
<a href="index.html" class="logo"><img src="Logo.png" alt="Logo" /></a>
<a href="index.html">Home</a>
<a href="about-us.html">About Us</a>
<a href="menu.html">Menu</a>
<a href="contact-us.html">Contact Us</a>
</nav>
<main>
<div class="center2">
<h1>About Us</h1>
</div>
<div class="yummyyogurt">
<p> One day in 2009, we began making yoghurt and never stopped.
Now with over 13 years of experience in selecting the cultures that make our product so delicious,
we are more confident than ever in our expertise.
</p>
<p>
And one more thing, we absolutely love making yummy sumptious yoghurt for you and your family.
</p>
</div>
</main>
<footer>
<h3> Follow us </h3>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<a href="https://facebook.com" target="_blank" class="fa fa-facebook"></a>
<a href="https://twitter.com" target="_blank" class="fa fa-twitter"></a>
<a href="https://instagram.com" target="_blank" class="fa fa-instagram"></a>
</footer>
</body>
</html>