-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (57 loc) · 2.45 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<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="first">
<div class="biggerfont">
<h1> Welcome to YummyYogurt</h1>
</div>
<h4> Yohgurt that makes you say "mmmmmmm!" </h3>
<p> Every spoonful of our yogurt brings together families, communities and moments that matter.
With every taste, you forge new friendships and rediscover old ones. </p>
</div>
<div class="banner"></div>
<div class="second">
<h3> Recipes</h3>
<div class="list">
<ul>
<li> Breakfast </li>
<p> Eating yogurt as a breakfast menu is very good. The nutritional content in
yogurt is considered enough to provide energy for the body in the morning.
In addition, the digestive system health will also be maintained.
</p>
<li> Brunch/Snacktime </li>
<p> Yogurt can be a great post-workout snack, especially when it's combined with other,
carbohydrate-rich foods.
Be sure to choose plain, natural yogurt.
</p>
<li> Dinner </li>
<p> For those with sedentary habits that do not require significant energy expenditure, having a
fruit or
yogurt dinner can be beneficial. It is a light meal from a caloric point of view that offers the
right amount of antioxidants.
</p>
</ul>
</div>
</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>