-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
144 lines (120 loc) · 4.45 KB
/
Copy pathindex.html
File metadata and controls
144 lines (120 loc) · 4.45 KB
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
140
141
142
143
144
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="with-device-width, initial-scale=1.0">
<title>Waridi's Pasta Recipes</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<section class="header">
<nav>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()"></i>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="delights.html">TOP PASTA DELIGHTS</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<div class="text-box">
<h1>A meal so good, it is pre-PASTA-rous</h1>
<p>There’s so many different types of pasta to make a toothsome delight. From macaroni, farfalle, fusili, to spaghetti, fettuccine, ravioli, <br>there’s a noodle for every pasta lover to enjoy.</p>
<a href="delights.html" class="hero-btn">CLICK TO LEARN MORE</a>
</div>
</section>
<!----Pasta Recipies---->
<section class="recipes">
<h1>Pasta Recipies</h1>
<p>You can create any pasta dish the way you want it but for Waridi, pasta is made in tree categories: simple, spicy and yes, sophisticated. Your pasta does not have to be as boring as life can get sometimes.</p>
<div class="row">
<div class="recipe-col">
<h3>Simple</h3>
<p>Starting from the sauce to the ingredients, all simple pasta dishes are designed to be eaten even by weaning babies. For those who love simplicity, you will enjoy these pasta recipes. Pasta is more than the spices and add-ons. It is what makes you smile in each bite.</p>
</div>
<div class="recipe-col">
<h3>Spicy</h3>
<p>Do you feel adventurous and want to try something that excites your toungue? Ranging from the tart taste of vinegar, creamy mayo, a chilled ranch dressing infused with pomegranate seeds and tens of other witty combinations to try, this category is perfect for you.</p>
</div>
<div class="recipe-col">
<h3>Sophisticated</h3>
<p>Need I say more? Cheese makes pasta sophisticated and for those who can handle the outburst of flavor then, let us go loco with cheese! Here, we do not leave anything on our plates so, be prepared.</p>
</div>
</div>
</section>
<!----tips---->
<section class="tips">
<h1>The Perfect Pasta Tips</h1>
<p>The Do's and Dont's to the perfect pasta.</p>
<div class="row">
<div class="tips-col">
<img src="images/spices.jpg">
<div class="layer">
<h3>Don't Spice It Up</h3>
</div>
</div>
<div class="tips-col">
<img src="images/aldente.jpg">
<div class="layer">
<h3>Do It Al Dente</h3>
</div>
</div>
<div class="tips-col">
<img src="images/straight.jpg">
<div class="layer">
<h3>Don't break Into Half</h3>
</div>
</div>
</div>
</section>
<!-----Favourites----->
<section class="favourites">
<h1>Waridi's Favourites</h1>
<p>My two favourite dishes, motivated by the people I love the most</p>
<div class="row">
<div class="favourites-col">
<img src="images/papa.jpg">
<h3>Daddy's Delight</h3>
<p>Papa's introduction to spaghetti for me. I love it!</p>
</div>
<div class="favourites-col">
<img src="images/mom.jpg">
<h3>Mom's Inspiration</h3>
<p> Full of tricks and twists in this dish she showed me, mama, you are the best.</p>
</div>
</div>
</section>
<!----Call To Action--->
<section class="cta">
<h1>Contact Me For More Pasta Recipes And Tips</h1>
<a href="contact.html" class="contact-btn">CONTACT ME</a>
</section>
<!----Footer--->
<section class="footer">
<h4>About Me</h4>
<p>I believe life is full of good people, adorable cats and yum-yum pasta.</p>
<div class="icons">
<i class="fa fa-facebook" aria-hidden="true"></i>
<i class="fa fa-twitter"></i>
<i class="fa fa-instagram"></i>
<i class="fa fa-linkedin"></i>
</div>
<p>Caleno Made This.</p>
</section>
<!----JavaScript for Toogle Menu---->
<script>
var navLinks = document.getElementById("navLinks");
function showMenu(){
navLinks.style.right = "0";
}
function hideMenu(){
navLinks.style.right = "-200px";
}
</script>
</body>
</html>