-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path8.html
728 lines (670 loc) · 28.4 KB
/
8.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
<!DOCTYPE html>
<html lang="en">
<head>
<title>Оформление текста</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="theme-color" content="#007BFF">
<link rel="stylesheet" href="node_modules/@shower/material/styles/styles.css">
<link rel="stylesheet" href="styles/all_styles.css">
<link rel="shortcut icon" type="image/png" href="pictures/general/narfu_icon.png">
<style>
.selector {
color: var(--green);
}
.property {
color: var(--pink);
}
</style>
</head>
<body class="shower list">
<header class="caption">
<h1>Оформление текста</h1>
<p><a href="index.html">Web-технологии</a></p>
</header>
<section class="slide narfu_official" id="cover">
<h2>Оформление<br>текста</h2>
<p>Лекция №6</p>
</section>
<!-- Main -->
<section class="slide narfu">
<img src="pictures/8/fonts.jpeg" alt="" class="cover h">
</section>
<section class="slide narfu">
<h2>Задание шрифта</h2>
<pre>
<code><span class="selector">body</span> {</code>
<code> <span class="property">font-family</span>: "PT Sans", "Arial", sans-serif;</code>
<code class="comment">/* "PT Sans" – из нескольких слов */</code>
<code class="comment">/* "Arial" / Arial – из одного слова */</code>
<code class="comment">/* sans-serif – общий тип шрифта */</code>
<code>}</code>
</pre>
</section>
<section class="slide narfu">
<h2>
Фолбэк на общий тип шрифта
</h2>
<pre> <code>body {</code>
<code> font-family: 'Rubik', <mark class="important">sans-serif;</mark></code>
<code> font-family: 'Georgia', <mark class="important">serif;</mark></code>
<code> font-family: 'Fira Code', <mark class="important">monospace;</mark></code>
<code>}</code>
</pre>
</section>
<section class="slide narfu">
<h2>Веб-безопасные шрифты</h2>
<p>– шрифты, которые обычно доступны во всех системах и поэтому могут использоваться без особого беспокойства.</p>
<p>Список реальных веб-безопасных шрифтов будет меняться по мере развития операционных систем!</p>
</section>
<section class="slide narfu">
<h2>Веб-безопасные шрифты</h2>
<table>
<tr>
<th>Имя шрифта</th>
<th>Тип</th>
<th>Заметки</th>
</tr>
<tr>
<td>Arial</td>
<td>sans-serif</td>
<td>Альтернатива – <code>Helvetica</code></td>
</tr>
<tr>
<td>Courier New</td>
<td>monospace</td>
<td>Альтернатива – <code>Courier</code></td>
</tr>
<tr>
<td>Georgia</td>
<td>serif</td>
<td></td>
</tr>
<tr>
<td>Times New Roman</td>
<td>serif</td>
<td>Альтернатива – <code>Times</code></td>
</tr>
<tr>
<td>Trebuchet MS</td>
<td>sans-serif</td>
<td></td>
</tr>
<tr>
<td>Verdana</td>
<td>sans-serif</td>
<td>Осторожно на мобильных!</td>
</tr>
</table>
</section>
<section class="slide narfu">
<h2>Стандартные шрифты</h2>
<p>CSS определяет пять общих имен для шрифтов: <code>serif</code>, <code>sans-serif</code>, <code>monospace</code>,
<code>cursive</code> и <code>fantasy</code>. </p>
<p><code>cursive</code> и <code>fantasy</code> менее предсказуемы, и рекомендуется использовать их очень осторожно,
тестируя в процессе.</p>
</section>
<section class="slide narfu">
<h2>Стандартные шрифты</h2>
<table>
<tr>
<th>Шрифт</th>
<th>Заметка</th>
</tr>
<tr>
<td>serif</td>
<td>Шрифты с засечками</td>
</tr>
<tr>
<td>sans-serif</td>
<td>Шрифты без засечек</td>
</tr>
<tr>
<td>monospace</td>
<td>Cимволы имеют одинаковую ширину</td>
</tr>
<tr>
<td>cursive</td>
<td>Шрифты, имитирующие почерк человека</td>
</tr>
<tr>
<td>fantasy</td>
<td>Шрифты, предназначенные для украшения</td>
</tr>
</table>
</section>
<section class="slide narfu">
<h2>Стандартные шрифты</h2>
<table>
<tr>
<th>Шрифт</th>
<th>Пример</th>
</tr>
<tr>
<td>serif</td>
<td style="font-family: serif">My big red elephant</td>
</tr>
<tr>
<td>sans-serif</td>
<td style="font-family: sans-serif">My big red elephant</td>
</tr>
<tr>
<td>monospace</td>
<td style="font-family: monospace">My big red elephant</td>
</tr>
<tr>
<td>cursive</td>
<td style="font-family: cursive">My big red elephant</td>
</tr>
<tr>
<td>fantasy</td>
<td style="font-family: fantasy">My big red elephant</td>
</tr>
</table>
</section>
<section class="slide narfu">
<h2>Подключение файла шрифта</h2>
<p>Для подключения нестандартных шрифтов существует @-правило <code>@font-face</code>. С его помощью можно
подключить и использовать на странице любой шрифт из файла.</p>
<p>При загрузке сайта браузер будет брать шрифт из указанного файла и отображать текст именно этим шрифтом.</p>
</section>
<section class="slide narfu">
<h2>Подключение файла шрифта</h2>
<pre>
<code>@font-face {</code>
<code> <mark>font-family</mark>: "Lexend Peta";</code>
<code> <mark>src</mark>: url("/fonts/Lexend_Peta-webfont.woff2") format("woff2");</code>
<code> font-weight: normal;</code>
<code>}</code>
</pre>
</section>
<section class="slide narfu">
<h2>Разные типы файлов</h2>
<pre>
<code> src: url("/fonts/Lexend_Peta-webfont.<mark>woff2</mark>") format(<mark>"woff2"</mark>);</code>
<code> src: url("/fonts/Lexend_Peta-webfont.<mark>woff</mark>") format(<mark>"woff"</mark>);</code>
<code> src: url("/fonts/Lexend_Peta-webfont.<mark>ttf</mark>") format(<mark>"ttf"</mark>);</code>
</pre>
<p>Несколько файлов можно подключить, перечислив конструкции c <code>url()</code> через запятую.</p>
</section>
<section class="slide white">
<ol class="large place" style="font-size: larger">
<li>WOFF2</li>
<li>WOFF</li>
</ol>
<div class="place spotlight next active" style="
width: 380px;
height: 380px;
margin-left: -25px;
"></div>
</section>
<section class="slide narfu">
<h2>Локальные шрифты</h2>
<pre>
<code>@font-face {</code>
<code> font-family: "Lexend Peta";</code>
<code> src: <mark>local</mark>("Lexend Peta Regular"), <mark>local</mark>("LexendPeta-Regular");</code>
<code> font-weight: normal;</code>
<code>}</code>
</pre>
</section>
<section class="slide narfu">
<h2>Шрифт в разных начертаниях</h2>
<pre>
<code>@font-face {</code>
<code> font-family: "Lexend Peta <mark>Regular</mark>";</code>
<code> ...</code>
<code>}</code>
<code>@font-face {</code>
<code> font-family: "Lexend Peta <mark>Bold</mark>";</code>
<code> ...</code>
<code>}</code>
</pre>
</section>
<section class="slide narfu">
<h2>Шрифт в разных начертаниях</h2>
<pre>
<code class="comment">/* Используем в разных местах разные начертания шрифтов */</code>
<code><span class="selector">body</span> {</code>
<code> <span class="property">font-family</span>: "Lexend Peta <mark>Regular</mark>", sans-serif;</code>
<code>}</code>
<code></code>
<code><span class="selector">.title</span> {</code>
<code> <span class="property">font-family</span>: "Lexend Peta <mark>Bold</mark>", sans-serif;</code>
<code>}</code>
</pre>
</section>
<section class="slide narfu">
<h2>Шрифт в разных начертаниях</h2>
<pre>
<code>@font-face {</code>
<code> font-family: "Lexend Peta";</code>
<code class="mark"> font-weight: normal;</code>
<code>}</code>
<code>@font-face {</code>
<code> font-family: "Lexend Peta";</code>
<code class="mark"> font-weight: bold;</code>
<code>}</code>
</pre>
</section>
<section class="slide narfu">
<h2>Шрифт в разных начертаниях</h2>
<pre>
<code><span class="selector">body</span> {</code>
<code> <span class="property">font-family</span>: "Lexend Peta", sans-serif;</code>
<code class="mark"> <span class="property">font-weight</span>: normal;</code>
<code>}</code>
<code></code>
<code><span class="selector">.title</span> {</code>
<code class="mark"> <span class="property">font-weight</span>: bold;</code>
<code>}</code>
</pre>
</section>
<section class="slide narfu">
<h2>Несколько советов</h2>
<p>💡 <code>@font-face</code> нужно объявлять до того, как обращаться в CSS к этому шрифту. Принято подключать
шрифты в самом начале файла стилей (но после всех <code>@import</code>).</p>
<pre>
<code>@font-face { ... }</code>
<code>@import { ... }</code>
<code class="comment">/* Использование шрифта */</code>
</pre>
</section>
<section class="slide narfu">
<h2>Несколько советов</h2>
<p>💡 <code>@font-face</code> нельзя объявить внутри другого CSS-правила.</p>
<div class="columns two">
<div>
<p style="color: var(--blue)">Работает:</p>
<pre>
<code>@font-face { ... }</code>
<code> </code>
<code><span class="selector">.title</span> {</code>
<code> <span class="property">font-family</span>: ...;</code>
<code>}</code>
</pre>
</div>
<div>
<p style="color: var(--red)">Не работает:</p>
<pre>
<code><span class="selector">.title</span> {</code>
<code> @font-face { ... }</code>
<code> <span class="property">font-family</span>: ...;</code>
<code>}</code>
</pre>
</div>
</div>
</section>
<section class="slide narfu">
<h2>Несколько советов</h2>
<p>💡 Важно использовать в точности то название подключенного шрифта, которое задаётся внутри
<code>@font-face</code>. Иначе магия не сработает.</p>
<pre>
<code> @font-face{ font-family: "Beautiful-Font"; }</code>
<code> </code>
<code><span class="selector">.title</span> {</code>
<code> <span class="property">font-family</span>: "Bea<mark>y</mark>tiful-Font";</code>
<code>}</code>
</pre>
</section>
<section class="slide narfu">
<h2 class="shout">Подключение Google Fonts</h2>
</section>
<section class="slide white">
<img src="pictures/8/pick-font.png" alt="" class="cover w">
</section>
<section class="slide white">
<img src="pictures/8/select-family.png" alt="" class="cover h">
</section>
<section class="slide narfu">
<h2>Подключение Google Fonts в HTML</h2>
<pre>
<code><head></code>
<code>...</code>
<code><link <mark>href</mark>="https://fonts.googleapis.com/css2?</code>
<code> family=Raleway:ital,wght@1,200&</code>
<code> display=swap"</code>
<code> <mark>rel</mark>="stylesheet"></code>
<code>...</code>
<code></head></code>
</pre>
</section>
<section class="slide narfu">
<h2>Подключение Google Fonts в CSS</h2>
<pre>
<code>@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@1,200&display=swap');</code>
<code> </code>
<code>p {</code>
<code> font-family: 'Raleway', sans-serif;</code>
<code>}</code>
</pre>
</section>
<section class="slide narfu">
<h2 class="shout">Управление размерами текста</h2>
</section>
<section class="slide narfu">
<h2>Свойство font-size</h2>
<pre>
<code><span class="selector">p</span> {</code>
<code> <span class="property">font-size</span>: 20px;</code>
<code>}</code>
</pre>
<pre>
<code><span class="selector">h1</span> {</code>
<code> <span class="property">font-size</span>: 2em; <span
class="comment">/* в 2 раза больше родительского */</span></code>
<code>}</code>
</pre>
</section>
<section class="slide narfu">
<h2>Свойство line-height</h2>
<pre>
<code><span class="selector">p</span> {</code>
<code> <span class="property">font-size</span>: 10px;</code>
<code> <span class="property">line-height</span>: normal; <span
class="comment">/* примерно 12px */</span></code>
<code>}</code>
</pre>
<p>Значение <code>normal</code> позволяет всем нестилизованным текстам выглядеть удобочитаемо. </p>
</section>
<section class="slide narfu">
<h2>Свойство line-height</h2>
<pre>
<code><span class="selector">p</span> {</code>
<code> <span class="property">font-size</span>: 16px;</code>
<code> <span class="property">line-height</span>: 26px; <span class="comment">/* абсолютное значение */</span></code>
<code> <span class="property">line-height</span>: 150%; <span class="comment">/* вычисленное значение 16px * 150% = 24px */</span></code>
<code> <span class="property">line-height</span>: 2; <span class="comment">/* вычисленное значение 16px * 2 = 32px */</span></code>
<code>}</code>
</pre>
</section>
<section class="slide narfu">
<h2>Свойство font-weight</h2>
<pre>
<code><span class="selector">h1</span> {</code>
<code> <span class="property">font-weight</span>: 400; <span
class="comment">/* то же самое что и normal */</span></code>
<code>}</code>
<code></code>
<code><span class="selector">p</span> {</code>
<code> <span class="property">font-weight</span>: bold; <span
class="comment">/* то же самое что и 700 */</span></code>
<code>}</code>
</pre>
</section>
<section class="slide narfu">
<h2 class="shout"><span style="font-size: smaller">Позиционирование текста</span></h2>
</section>
<section class="slide narfu">
<h2>Свойство text-align</h2>
<ul>
<li><code>left</code> — выравнивание по левому краю блока, это значение по умолчанию;</li>
<li><code>right</code> — по правому краю блока;</li>
<li><code>center</code> — по центру блока;</li>
<li><code>justify</code> — по ширине блока, при этом слова в строке будут размещаться так, чтобы занять
равномерно всё пространство строки.
</li>
</ul>
</section>
<section class="slide narfu">
<h2>Свойство text-align</h2>
<div class="columns two">
<div>
HTML:
<pre>
<code><p></code>
<code> Я текст внутри абзаца</code>
<code></p></code>
</pre>
</div>
<div>
CSS:
<pre>
<code><span class="selector">p</span> {</code>
<code> <span class="property">text-align</span>: center;</code>
<code>}</code>
</pre>
</div>
</div>
</section>
<section class="slide narfu">
<h2>Свойство text-align</h2>
<div class="browser-view">
<p style="text-align: center">Я текст внутри абзаца</p>
</div>
</section>
<section class="slide narfu">
<h2>Свойство vertical-align</h2>
<ul>
<li><code>top</code> — выравнивание по верхнему краю строки;</li>
<li><code>middle</code> — по середине строки;</li>
<li><code>bottom</code> — по нижнему краю строки;</li>
<li><code>baseline</code> — по базовой линии строки (значение по умолчанию).</li>
</ul>
<p>В отличие от <code>text-align</code> свойство <code>vertical-align</code> задаётся самому элементу,
а не содержащему его контейнеру.</p>
</section>
<section class="slide narfu">
<h2>Свойство vertical-align</h2>
<div class="columns two">
<div>
<p>HTML:</p>
<pre>
<code><p></code>
<code> <img src="picture.png"></code>
<code> Я текст внутри абзаца</code>
<code></p></code>
</pre>
</div>
<div>
<p>CSS:</p>
<pre>
<code><span class="selector">img</span> {</code>
<code> <span class="property">vertical-align</span>: middle;</code>
<code>}</code>
</pre>
</div>
</div>
</section>
<section class="slide narfu">
<h2>Свойство vertical-align</h2>
<div class="browser-view">
<p>
<img src="pictures/8/red_cat.jpeg" alt="рыжий кот" style="vertical-align: middle; width: 300px">
Я текст внутри абзаца
</p>
</div>
</section>
<section class="slide narfu">
<h2>Свойство letter-spacing</h2>
<div class="columns two">
<pre>
<code class="comment">/* Значения - ключевые слова */</code>
<code>letter-spacing: normal;</code>
<code></code>
<code class="comment">/* Значения <length> */</code>
<code>letter-spacing: 0.3em;</code>
<code>letter-spacing: 3px;</code>
<code>letter-spacing: .3px;</code>
</pre>
<div class="browser-view">
<p style="letter-spacing: normal">1234567890</p>
<p style="letter-spacing: 0.3em">1234567890</p>
<p style="letter-spacing: 3px">1234567890</p>
<p style="letter-spacing: .3px">1234567890</p>
</div>
</div>
</section>
<section class="slide narfu">
<h2>Свойство word-spacing</h2>
<div class="columns two">
<pre>
<code class="comment">/* Значение ключевым словом */</code>
<code>word-spacing: normal;</code>
<code class="comment">/* <length> значения */</code>
<code>word-spacing: 12px;</code>
<code>word-spacing: 0.3em;</code>
<code class="comment">/* <percentage> значения */</code>
<code>word-spacing: 50%;</code>
</pre>
<div class="browser-view">
<p style="word-spacing: normal">Мама мыла раму</p>
<p style="word-spacing: 12px">Мама мыла раму</p>
<p style="word-spacing: .3em">Мама мыла раму</p>
<p style="word-spacing: 50%">Мама мыла раму</p>
</div>
</div>
</section>
<section class="slide narfu">
<h2 class="shout">Управление стилем текста</h2>
</section>
<section class="slide narfu">
<h2>Свойство font-style</h2>
<div class="columns two">
<ul>
<li><code>normal</code> — обычное начертание;</li>
<li><code>italic</code> — курсивное начертание;</li>
<li><code>oblique</code> — наклонное начертание.</li>
</ul>
<div class="browser-view">
<ul style="font-family: Helvetica, serif;">
<li style="font-style: normal">Мама мыла раму</li>
<li style="font-style: italic">Мама мыла раму</li>
<li style="font-style: oblique">Мама мыла раму</li>
</ul>
</div>
</div>
</section>
<section class="slide narfu">
<h2>Свойство text-transform</h2>
<div class="columns two">
<ul>
<li><code>lowercase</code> — все строчные;</li>
<li><code>uppercase</code> — все заглавные;</li>
<li><code>capitalize</code> — каждое слово начинается с большой буквы;</li>
<li><code>none</code> — отменяет изменение регистра.</li>
</ul>
<div class="browser-view">
<ul>
<li style="text-transform: lowercase">Мама мыла раму</li>
<li style="text-transform: uppercase">Мама мыла раму</li>
<li style="text-transform: capitalize">Мама мыла раму</li>
<li style="text-transform: none">Мама мыла раму</li>
</ul>
</div>
</div>
</section>
<section class="slide narfu">
<h2>Свойство text-decoration</h2>
<div class="columns two">
<ul>
<li><code>underline</code> — подчёркивание;</li>
<li><code>line-through</code> — зачёркивание;</li>
<li><code>overline</code> — надчёркивание;</li>
<li><code>none</code> — убирает вышеперечисленные эффекты.</li>
</ul>
<div class="browser-view">
<ul>
<li style="text-decoration: underline">Мама мыла раму</li>
<li style="text-decoration: line-through">Мама мыла раму</li>
<li style="text-decoration: overline">Мама мыла раму</li>
<li style="text-decoration: none">Мама мыла раму</li>
</ul>
</div>
</div>
</section>
<section class="slide narfu">
<h2>Свойство text-decoration</h2>
<pre>
<code><span class="selector">p</span> {</code>
<code class="comment">/* подчёркнутый текст */</code>
<code> <span class="property">text-decoration</span>: underline;</code>
<code>}</code>
<code><span class="selector">span</span> {</code>
<code class="comment"> /* подчёркнутый и зачёркнутый текст */</code>
<code> <span class="property">text-decoration</span>: underline line-through;</code>
<code>}</code>
</pre>
</section>
<section class="slide narfu">
<h2>Свойство text-decoration</h2>
<ul>
<li><code>text-decoration-line</code> — вид линии;</li>
<li><code>text-decoration-style</code> — стиль линии;</li>
<li><code>text-decoration-color</code> — цвет линии;</li>
</ul>
<pre>
<code><span class="selector">p</span> {</code>
<code class="comment"> /* красное пунктирное подчеркивание */</code>
<code> <span class="property">text-decoration</span>: underline dashed red;</code>
<code>}</code>
</pre>
</section>
<section class="slide narfu">
<h2>Контраст цвета текста и фона</h2>
<pre style="font-size: smaller">
<code><span class="selector">p</span> {</code>
<code class="comment"> /* идеальный контраст: цвет текста белый, цвет фона — чёрный */</code>
<code> <span class="property">background-color</span>: #000000;</code>
<code> <span class="property">color</span>: #ffffff;</code>
<code>}</code>
<code><span class="selector">span</span> {</code>
<code class="comment"> /* плохой контраст: цвет текста и фона — серые */</code>
<code> <span class="property">background-color</span>: #cccccc;</code>
<code> <span class="property">color</span>: #dddddd;</code>
<code>}</code>
</pre>
</section>
<section class="slide narfu">
<h2>Управление пробелами</h2>
<div style="white-space: pre">
<p>Оригинальный текст:</p>The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog
</div>
</section>
<section class="slide narfu">
<h2>Управление пробелами</h2>
<p><code>nowrap</code></p>
<div class="browser-view" style="white-space: nowrap; max-width: 50%">The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog
</div>
</section>
<section class="slide narfu">
<h2>Управление пробелами</h2>
<p><code>pre</code></p>
<div class="browser-view" style="white-space: pre; max-width: 50%">The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog
</div>
</section>
<section class="slide narfu">
<h2>Управление пробелами</h2>
<p><code>pre-wrap</code></p>
<div class="browser-view" style="white-space: pre-wrap; max-width: 50%">The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog
</div>
</section>
<section class="slide narfu">
<h2>Управление пробелами</h2>
<p><code>normal</code></p>
<div class="browser-view" style="white-space: normal; max-width: 50%">The quick brown fox jumps over the lazy dog
The quick brown fox jumps over the lazy dog
</div>
</section>
<!-- Footer -->
<section class="slide" id="see-more">
<h2 class="shout">
<a href="index.html">Все презентации<br>на GitHub Pages</a>
</h2>
</section>
<footer class="badge">
<a href="https://github.com/LoveSolaristics/shower-presentation.git">
<svg width="81" height="79" viewBox="0 0 81 79" aria-hidden="true">
<path d="M40.5 0a40.5 40.5 0 0 0-12.8 78.93c2 .37 2.76-.88 2.76-2s0-3.51-.05-6.89c-11.27 2.45-13.64-5.43-13.64-5.43-1.84-4.68-4.5-5.92-4.5-5.92-3.68-2.51.28-2.46.28-2.46 4.06.29 6.2 4.17 6.2 4.17 3.61 6.19 9.48 4.4 11.79 3.37a8.65 8.65 0 0 1 2.57-5.41c-9-1-18.45-4.5-18.45-20a15.65 15.65 0 0 1 4.17-10.87 14.57 14.57 0 0 1 .4-10.72s3.4-1.09 11.14 4.15a38.39 38.39 0 0 1 20.28 0c7.73-5.24 11.13-4.15 11.13-4.15a14.55 14.55 0 0 1 .4 10.72 15.63 15.63 0 0 1 4.16 10.87c0 15.56-9.47 19-18.49 20 1.45 1.25 2.75 3.72 2.75 7.5v11.11c0 1.08.73 2.34 2.78 1.95A40.51 40.51 0 0 0 40.5 0z"></path>
</svg>
Репозиторий<br>на GitHub
</a>
</footer>
<div class="progress"></div>
<script src="node_modules/@shower/core/dist/shower.js"></script>
</body>
</html>