-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtuerkiye-drink.html
More file actions
82 lines (75 loc) · 3.47 KB
/
Copy pathtuerkiye-drink.html
File metadata and controls
82 lines (75 loc) · 3.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Türkiye - Ayran</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<a href="index.html">
<img src="images/three-spoons.jpeg" alt="Three Spoons Logo" class="logo">
</a>
<nav class="navbar">
<ul class="menu">
<li class="menu-item">
Menu
<ul class="submenu">
<li><a href="index.html">Homepage</a></li>
</ul>
</li>
<li class="menu-item">
Nicaragua
<ul class="submenu">
<li><a href="nicaragua-dish.html">Dish</a></li>
<li><a href="nicaragua-dessert.html">Dessert</a></li>
<li><a href="nicaragua-drink.html">Drink</a></li>
</ul>
</li>
<li class="menu-item">
Nigeria
<ul class="submenu">
<li><a href="nigeria-dish.html">Dish</a></li>
<li><a href="nigeria-dessert.html">Dessert</a></li>
<li><a href="nigeria-drink.html">Drink</a></li>
</ul>
</li>
<li class="menu-item">
Türkiye
<ul class="submenu">
<li><a href="tuerkiye-dish.html">Dish</a></li>
<li><a href="tuerkiye-dessert.html">Dessert</a></li>
<li><a href="tuerkiye-drink.html">Drink</a></li>
</ul>
</li>
</ul>
</nav>
</header>
<main class="homepage">
<section class="intro">
<h1>Ayran</h1>
<img src="images/tuerkiye-drink.jpg" alt="Ayran" style="max-width: 100%; height: auto; border-radius: 10px; margin: 20px 0;">
<p>Ayran is a traditional Turkish drink made from a simple mix of yogurt, cold water, and a pinch of salt. It’s cool, refreshing, and slightly tangy — the kind of drink that cuts through rich or spicy foods and leaves you feeling light and refreshed. In Türkiye, ayran is more than just a beverage; it’s a mealtime staple, often served alongside kebabs, rice dishes, and other hearty foods.</p>
<p>It’s typically whisked until frothy, giving it a smooth, airy texture. You’ll find it everywhere in Türkiye — from homes and restaurants to street-side grills and even fast-food spots. Many people also see ayran as a natural, healthy alternative to sugary soft drinks.</p>
<p>Overall, Ayran is a simple but beloved part of Turkish culinary culture, known for its cooling taste and everyday comfort.</p>
<h2>Ingredients</h2>
<ul style="list-style: disc; padding-left: 20px; max-width: 700px; margin: 0 auto 20px; text-align: left;">
<li>500g yogurt</li>
<li>500ml cold water</li>
<li>1 TL salt</li>
<li>1 TL optional: mint, cucumber or basil</li>
</ul>
<h2>How to Make It</h2>
<ul style="list-style: disc; padding-left: 20px; max-width: 700px; margin: 0 auto 20px; text-align: left;">
<li>Put the yogurt in a bowl and add the cold water. Stir until a uniform consistency is formed.</li>
<li>Then add the salt and stir well again until the salt dissolves completely. The traditional ayran must be stirred vigorously until a thick layer of foam is formed. Then let it rest for a few minutes.</li>
<li>Optionally, you can garnish the drinking yogurt with fresh mint, cucumber or basil.</li>
</ul>
</section>
</main>
<footer>
<p>© 2025 Three Spoons | Celebrating Culture Through Food</p>
</footer>
</body>
</html>