-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.81 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
<!doctype html>
<html lang="en">
<head>
<title>Module 2 Solution - Responsive Layout</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta id="theme-color" name="theme-color" content="#fff">
<meta itemprop="image" content="icon.png">
<link rel="shortcut icon" type="image/png" href="icon.png" />
<link rel="stylesheet" type="text/css" href="css/styles.css" charset="utf-8" />
</head>
<body>
<div class="container">
<div class="header">
<img src="img/meow.png" alt="cat pic" class="header-img" />
<h1 class="header-title">Chairman Meow's Kitchen</h1>
</div>
<div class="row">
<div class="item">
<div class="item-title">Chicken</div>
<p>Get ready for chicken that’s cluckin’ incredible! We’ve taken this humble bird and transformed it into a dish so juicy, so crispy, and so perfectly seasoned it practically wrote its own fan club anthem. So many mouthwatering styles it should have its own runway show.</p>
</div>
<div class="item">
<div class="item-title">Beef</div>
<p>Our beef dishes are so tender, so juicy, and so packed with flavor that you’ll think we’ve unlocked some sort of secret beef wizardry. Whether it’s a steak that’s charred to smoky perfection or slow-cooked beef that falls apart just by looking at it, this is meat magic at its finest.</p>
</div>
<div class="item">
<div class="item-title">Sushi</div>
<p>Mouthwatering, hand-crafted, sea-sourced perfection that’s so fresh it might still have an ocean address. Picture crispy tempura crunches, creamy avocado hugs, and the kind of fresh fish that whispers "eat me" in a seductive tone. These little rice-wrapped masterpieces are so good.</p>
</div>
</div>
</div>
</body>
</html>