-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
141 lines (114 loc) · 5.13 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
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
<!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>AL-COOKS</title>
<link rel="stylesheet" href="./Assets/CSS/style.css">
</head>
<body>
<!--Navigation bar-->
<nav>
<img src="./Assets/IMAGES/logo.png" alt="logo">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#today">Recipes</a></li>
<li><a href="#no">About</a></li>
<li><a href="#contact">Contacts</a></li>
</ul>
</nav>
<!--Section one-->
<section id="yes">
<div class="one">
<h2>Al cooks</h2>
<p>Welcome to my space, <br> where I get to share my favorite meals <br> and their recipes on a daily basis</p>
</div>
<div class="search">
<input class=search-txt size="80" type="text" name="" placeholder="Type to search 🔎">
</div>
</section>
<!--Recipes-->
<section id="recipes">
<h5>Easy, fast, delicious & comfort food that I enjoy</h5>
<h2 id="today">Today's recipes</h2>
<div class="food">
<div>
<h3>Nyama choma,viazi & kachumbari</h3>
<img src="Assets/IMAGES/nyamchom and waru.jpg" alt="nyamchom" class="show">
<p class="hide">Meat: this recipe uses a wholso do.<br>
Vegetables: fresh gingerchill(optional)..<br>
Spices: cumin, paprika, and stock cubes..<br>
Fruit: lemon juice (easily subst juice)..<br>
Condiments: cooking oil and salt..<br>
HOW TO MARINATE GOAT MEAT.<br>
Meat with marinade on top in preparation for grilling.<br>
Add the marinade.<br>
Okay, I will admit that marinating goat meat mayskip, <br>
but trust flavors. <br>
I can tell you for certain that there is no looking bac y before cooking.
</p>
</div>
<div>
<h3 style="margin-left:55px;">Mokimo & beaf stew</h3>
<img src="Assets/IMAGES/mokimo.jpg" alt="mokimo" class="show">
<p class="hid">Meat: this recipe uses also do.<br>
Vegetables: fresh ginger, gar chil(optional).<br>
Spices: cumin, paprika, and stock cubes..<br>
Fruit: lemon juice (easily substitutable with lime juice).<br>
Condiments: cooking oil and salt.<br>
HOW TO MARINATE GOAT MEAT.<br>
Meat with marinade on top in preparation for grilling.<br>
Add the marinade.<br>
Okay, I will admit that marinating goat meat may sound like an extra skip,<br>
but trust me on this one,. as this step willhance.<br>
I can tell you for certain that there is no looking backefore cooking.
</p>
</div>
</div>
<button type="button" id="mainButton" onclick="">Click to see the recipes</button>
</section>
<!--About me-->
<section id="me">
<h2 class="second">About me</h2>
<div class="mee">
<img src="Assets/IMAGES/about.png" alt="person" class="al">
<p id="no">Hey there! <br>
My name is Alice but you can call me Al. <br>
I'm so many things. I believe unless I try something then I can do it. <br>
I'm a Biochemist by proffession, an upcoming software engineer and a ux designer. <br>
I draw for leisure and cook to relax. I enjoy listening to music. <br>
Basically the only thing I dislike is history<br>
I opened this website to share daily recepies of food that I enjoy especially Kenyan food.<br>
I plan on opening others based on my different interests<br> <br>
Career aside, I'm a daughter, sister and a friend<br>
Despite this I value and enjoy my alone time.
Welcome to this space and hope you enjoy!</p>
</div>
</section>
<!--Contact-->
<section id="contact">
<h3 style="font-size:25px;">Contact me</h3>
<h4>Email: [email protected]</h4>
<div class="form">
<form action="">
<label for="name">Name</label><br>
<input type="text"><br>
<label for="email">Email</label><br>
<input type="text"><br>
<label for="comment">Comment</label><br>
<input type="text"><br><br>
<input type="submit" onClick="myFunction()" value="SUBMIT">
</form>
</div>
</section>
<!--Footer-->
<footer>
<div class="footer">
<p> alcooks@2022</p>
</div>
</footer>
<!--Java-script-->
<script src="./Assets/JS/script.js"></script>
</body>
</html>