-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
184 lines (182 loc) · 5.36 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!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>WebStudio</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/1.1.0/modern-normalize.min.css">
<link href="css/styles.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@700&family=Roboto:wght@400;500;700;900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header class="header">
<div class="container">
<a href="index.html" class="link">
<span class="logo logo-blue">Web</span
><span class="logo logo-black">Studio</span>
</a>
<nav>
<ul class="menu">
<li class="menu-item"><a href="index.html" class="link">Agencja</a></li>
<li class="menu-item"><a href="portfolio.html" class="link">Portfolio</a></li>
<li class="menu-item"><a href="..." class="link">Kontakt</a></li>
</ul>
</nav>
<ul class="menu-2">
<li>
<a href="mailto:info@devstudio.com" class="link"
>info@devstudio.com</a
>
</li>
<li>
<a href="tel:+48111111111" class="link">+48 111 111 111</a>
</li>
</ul>
</div>
</header>
<main>
<section class="section section-1">
<div class="main-page-top">
<h1>Efektywne rozwiązania dla waszego biznesu</h1>
<button type="button">Zamów usługę</button>
</div>
</section>
<section class="section main-page-mid-1-list">
<div class="container">
<ul class="main-page-mid-1-list">
<li><span class="heading">Lorem ipsum</span>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam vel
arcu sem. Sed non sodales dui. Interdum et malesuada
</li>
<li><span class="heading">Lorem ipsum</span>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam vel
arcu sem. Sed non sodales dui. Interdum et malesuada
</li>
<li><span class="heading">Lorem ipsum</span>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam vel
arcu sem. Sed non sodales dui. Interdum et malesuada
</li>
<li><span class="heading">Lorem ipsum</span>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam vel
arcu sem. Sed non sodales dui. Interdum et malesuada
</li>
</ul>
</div>
</section>
<section class="section">
<div class="main-page-mid-1 container">
<h2>Czym się zajmujemy</h2>
<ul class="main-page-mid-1-images">
<li>
<img
src="images/1.jpg"
alt="IT specialist working on a tablet"
width="370"
height="294"
/>
</li>
<li>
<img
src="images/2.jpg"
alt="IT specialist working on a mobile device"
width="370"
height="294"
/>
</li>
<li>
<img
src="images/3.jpg"
alt="IT specialist working on a colour palette"
width="370"
height="294"
/>
</li>
</ul>
</div>
</section>
<section class="section main-page-mid-2">
<div class="main-page-mid-2 container">
<h2>Nasz zespół</h2>
<ul class="main-page-mid-2-list">
<li>
<figure>
<img
src="images/4.jpg"
alt="Portrait of employee 1"
width="270"
height="260"
/>
<figcaption>
<h3>John Doe</h3>
<p>Product Designer</p>
</figcaption>
</figure>
</li>
<li>
<figure>
<img
src="images/5.jpg"
alt="Portrait of employee 2"
width="270"
height="260"
/>
<figcaption>
<h3>John Doe</h3>
<p>Frontend Developer</p>
</figcaption>
</figure></li>
<li>
<figure>
<img
src="images/6.jpg"
alt="Portrait of employee 3"
width="270"
height="260"
/>
<figcaption>
<h3>John Doe</h3>
<p>Marketing</p>
</figcaption>
</figure>
</li>
<li>
<figure>
<img
src="images/7.jpg"
alt="Portrait of employee 4"
width="270"
height="260"
/>
<figcaption>
<h3>John Doe</h3>
<p>UI Designer</p>
</figcaption>
</figure>
</li>
</ul>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<address>
<div class="container-footer">
<span class="logo logo-blue">Web</span
><span class="logo logo-white">Studio</span>
<br>
<span class="address-street">m. Warszawa, Aleje Jerozolimskie 21</span
><br />
<a href="mailto:info@devstudio.com" class="contact-bottom link"
>info@example.com</a
><br />
<a href="tel:+48111111111" class="contact-bottom link">+48 111 111 111</a>
</div>
</address>
</div>
</footer>
</body>
</html>