forked from vsuet/cards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (65 loc) · 2.64 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
<!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>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body style="font-family:Arial Black">
<header class="header">
<h1 class="center">What do I have in my fridge?</h1>
</header>
<main class="main">
<section class="section">
<div class="main__fridge">
<img src="https://img.icons8.com/offices/344/paprika.png" alt="">
<h3 class="center">Pepper</h3>
</div>
<div class="main__fridge">
<img src="https://img.icons8.com/offices/344/apple.png" alt="">
<h3 class="center">Apple</h3>
</div>
<div class="main__fridge">
<img src="https://img.icons8.com/offices/344/cheese.png" alt="">
<h3 class="center">Cheese</h3>
</div>
<div class="main__fridge">
<img src="https://img.icons8.com/offices/344/corn.png" alt="">
<h3 class="center">Corn</h3>
</div>
<div class="main__fridge">
<img src="https://img.icons8.com/offices/344/mushroom.png" alt="">
<h3 class="center">Mushroom</h3>
</div>
</section>
<section class="section">
<div class="main__fridge">
<img src="https://img.icons8.com/offices/344/garlic.png" alt="">
<h3 class="center">Garlik</h3>
</div>
<div class="main__fridge">
<img src="https://img.icons8.com/offices/344/steak-medium.png" alt="">
<h3 class="center">Beef</h3>
</div>
<div class="main__fridge">
<img src="https://img.icons8.com/offices/344/fish.png" alt="">
<h3 class="center">Fish</h3>
</div>
<div class="main__fridge">
<img src="https://img.icons8.com/offices/344/sunny-side-up-eggs.png" alt="">
<h3 class="center">Eggs</h3>
</div>
<div class="main__fridge">
<img src="https://img.icons8.com/external-flaticons-lineal-color-flat-icons/344/external-coriander-world-cuisine-flaticons-lineal-color-flat-icons-3.png" alt="">
<h3 class="center">Coriander</h3>
</div>
</section>
</main>
<hr>
<footer>
<h3 class="center">...that's all...</h3>
</footer>
</body>
</html>