-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (86 loc) · 3.62 KB
/
index.html
File metadata and controls
95 lines (86 loc) · 3.62 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
<!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>IceCream</title>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Titan+One&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./css/main.min.css" />
<!-- <link rel="stylesheet" href="./css/styles.css" /> -->
</head>
<body>
<!-- Секція хедер -->
<header class="header">
<div class="container header__container">
<a class="header__logo logo" href="./index.html">
<img class="logo__img" src="./images/header/logo.svg" alt="logotype IceCream" width="199" height="50" />
</a>
<nav class="nav">
<ul class="nav__list list">
<li class="nav__item">
<a class="nav__link nav__link--current link" href="">Home</a>
</li>
<li class="nav__item">
<a class="nav__link link" href="">About us</a>
</li>
<li class="nav__item">
<a class="nav__link link" href="">How it’s made?</a>
</li>
<li class="nav__item">
<a class="nav__link link" href="">Our products</a>
</li>
<li class="nav__item">
<a class="nav__link link" href="./contatcs.html">Contact</a>
</li>
</ul>
</nav>
<button class="header__btn btn" type="button">Buy now</button>
</div>
<!-- Секція Hero -->
<section class="hero" >
<div class="container hero-container">
<div class="hero-mine-title" >
<h1 class="hero-title title" >ice cream <br>
made with <br>
<span class="hero-title__secondary">passion</span>
</h1>
<ul class="hero__list list">
<li class="hero__item">
<a class="hero__link link" href="#productst">Products</a>
</li>
<li class="hero__item hero__item--secondary">
<a class="hero__link link" href="#about">How it’s made?</a>
</li>
</ul>
</div>
<div class="hero-upper-title">
<p class="hero__uppertitle uppertitle">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et</p>
<button class="hero__btn" type="button"></button>
</div>
<ul class="hero-images list">
<li class="hero-images__group">
<img class="hero-images__first" src="./images/hero/img-1_lg.png" alt="a jug of milk">
</li>
<li class="hero-images__group">
<img class="hero-images__second" src="./images/hero/img-2_lg.png" alt="an ice cream cone">
</li>
<li class="hero-images__group">
<img class="hero-images__third" src="./images/hero/img-3_lg.png" alt="soooooo tasty">
</li>
</ul>
<ul class="hero-benefits list" >
<li class="hero-benefits__item">
<p class="hero-benefits__amount">16</p>
<p class="hero-benefits__descr">cafes</p>
</li>
<li class="hero-benefits__item">
<p class="hero-benefits__amount">23</p>
<p class="hero-benefits__descr">food trucks</p>
</li>
</ul>
</div>
</section>
</body>
</html>