-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (84 loc) · 3.49 KB
/
index.html
File metadata and controls
99 lines (84 loc) · 3.49 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
97
98
99
<!DOCTYPE html>
<html lang="pl">
<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>Creative Design</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./CSS/main.css">
<script src="https://kit.fontawesome.com/ad267d658d.js" crossorigin="anonymous"></script>
</head>
<body>
<nav>
<div class="wrapper">
<button class="burger-icon"><i class="fa-solid fa-bars"></i></button>
<div class="nav-items">
<a href="#">home</a>
<a href="#about-us">o nas</a>
<a href="#products">produkty</a>
<a href="#contact">kontakt</a>
</div>
</div>
</nav>
<header class="header">
<div class="hero-bg"></div>
<div class="hero-text">
<h1>creative<span>design</span></h1>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit.</p>
</div>
</header>
<main>
<section class="about-us wrapper" id="about-us">
<h2 class="section-title">o nas</h2>
<p class="about-us-info">Lorem ipsum dolor sit, amet consectetur adipisicing elit. Tempore quod corporis,
iure a molestiae, non earum voluptatum, quidem distinctio ducimus officiis repudiandae corrupti est.
Recusandae praesentium consequatur asperiores quidem reprehenderit?</p>
<p class="about-us-info">Lorem ipsum dolor sit amet consectetur adipisicing elit. Sint porro nam, eius
provident ipsum molestiae fuga modi nihil nulla deserunt?</p>
</section>
<section class="products wrapper" id="products">
<h2 class="section-title">produkty</h2>
<div class="products-box">
<div class="product first-product">
<div class="hero-bg"></div>
<div class="hero-text">
<h3>przyjazne dzieciom</h3>
</div>
</div>
<div class="product second-product">
<div class="hero-bg"></div>
<div class="hero-text">
<h3>najnowsze technologie</h3>
</div>
</div>
<div class="product third-product">
<div class="hero-bg"></div>
<div class="hero-text">
<h3>user friendly</h3>
</div>
</div>
<div class="product fourth-product">
<div class="hero-bg"></div>
<div class="hero-text">
<h3>kompatybilne z wieloma urządzeniami</h3>
</div>
</div>
</div>
</section>
<section class="contact wrapper" id="contact">
<h2 class="section-title">kontakt</h2>
<p><i class="fas fa-phone"></i>+48 000 000 000</p>
<p><i class="fas fa-at"></i>mail@mail.pl</p>
<h3>Adres</h3>
<p>ul. Sezamkowa 1</p>
<p>00-000 Kraków</p>
</section>
</main>
<footer>
<p>© 2022 Creative Design</p>
</footer>
</body>
</html>