-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (42 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<title>Traditional Pakistani Dishes</title>
<meta charset="utf-8">
</head>
<body id="main">
<h1>Traditional Pakistani Dishes</h1>
<div class="bg-image">
<div class="row">
<div class="column">
<div class="content">
<a href="recipes/kabab.html">
<img src="images/kabab.jpg" alt="Chapli-Kabab" style="width:100%">
</a>
<h1>Chapli-Kabab</h1>
<p>A Chapli Kabab recipe that’s simple and easy to make yet tastes like it’s from an Afghan or Pakistani restaurant. </p>
</div>
</div>
<div class="column">
<div class="content">
<a href="recipes/haleem.html">
<img src="images/haleem.jpg" alt="Haleem" style="width:100%">
</a>
<h1>Haleem</h1>
<p>f you’ve ever found haleem intimidating, this recipe is for you!</p>
</div>
</div>
<div class="column">
<div class="content">
<a href="recipes/nihari.html">
<img src="images/nihari.jpg" alt="Nihari" style="width:100%">
</a>
<h1>Nihari</h1>
<p>Here’s an easy Nihari (Pakistani Beef Stew) recipe that requires 1 pot and less than 30 minutes of initial prep time. </p>
</div>
</div>
</div>
</div>
</body>
</html>