forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (84 loc) · 2.46 KB
/
index.html
File metadata and controls
96 lines (84 loc) · 2.46 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Bite of the Ancestors</title>
<link href="//fonts.googleapis.com/css?family=Roboto:400,500,300" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="./image/Group 22.png" />
</head>
<body>
<header>
<nav>
<a href="./index.html">Home </a>
<a href="">About</a>
<a href="">Contacts</a>
</nav>
</header>
<div class="logo">
<img src="./image/Group 22.png" alt="logo">
</div>
<main>
Welcome! I am Anastasiia, a mom of four and recipe creator of all the good things you’ll find here. I hope to
inspire you with new ideas and give you confidence in the kitchen, with the help of tried and true recipes that
include process photos.
</main>
<h1>Our recipes</h1>
<div class="container">
<div class="item">
<a href="babka.html"><img src="./image/babka.jpg" alt="babka photo">
</a>
<p>Babka</p>
</div>
<div class="item">
<a href="lox_bagel.html">
<img src="./image/lox_bagels.jpg" alt=" bagels photo">
</a>
<p>Lox Bagel</p>
</div>
<div class="item">
<a href="hamsi.html">
<img src="./image/hamsi.jpg" alt=" hamsi photo">
</a>
<p>Hamsi</p>
</div>
<div class="item">
<a src="hamsi.html" target="_blank">
<img src="./image/wareniki.jpg" alt="wareniki photo">
</a>
<p>Wareniki</p>
</div>
<div class="item">
<a href="lox_bagel.html">
<img src="./image/lahmacun.jpg" alt=" LAhmacun photo">
</a>
<p>Lahmacun</p>
</div>
<div class="item">
<a href="lox_bagel.html">
<img src="./image/vegan_lobster.jpg" alt=" Vegan Lobster photo">
</a>
<p>Vegan Lobster rolls</p>
</div>
</div>
<section>
<div class="container_contact">
<h2 class="project-tile">Let us get in touch</h2>
<p>You can reach me through following links
<p>
<ul>
<li><a target="_blank" href="https://github.com/batuncer">
Github</a></li>
<li><a target="_blank" href="https://www.instagram.com/baki_tncr/?hl=en">
instagram</a></li>
</ul>
</div>
</section>
<footer>
<div class="logo">
<img src="./image/Group 22.png" alt="logo">
</div>
</footer>
</body>
</html>