-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 1.77 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Donuts from the Avengers</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Donuts from the Avengers</h1>
<div class="pustota"></div>
<nav>
<a href="#hulk">Pistachio</a>
<a href="#ironman">Strawberry</a>
<a href="#final">Order</a>
<a href="#info">Info</a>
</nav>
</header>
<main>
<article class="banner">
<h1>The best donuts in the world!</h1>
<p>
Eat and save the world!
</p>
</article>
<article class="post" id="hulk">
<p>
Experience the amazing nutty taste of a pistachio donut from the Hulk!
Eat a whole box and gain the incredible power to crush baddies
and terrify entire armies!
Buy the Mega Portion and give a five litre bottle of Coke for free!
</p>
<img src="hulk.png">
</article>
<div class="razryv"></div>
<article class="post" id="ironman">
<img src="ironman.png">
<p>
The subtle and refined taste of strawberry donut genius from Tony
Stark unlocks engineering skills and multiplies creativity
potential when tackling the challenges of saving the world!
</p>
</article>
<article id="final">
<div>
Order donurs by the messenger
WhatsAvenger +1 111 111 11-11
</div>
</article>
</main>
<footer id="info">
(c) All rights belong to Marvel, rights to the donuts
belong to no one.
</footer>
</body>
</html>