Table of Contents
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Keybr.com | |
| A free online typing tutorial with historical statistics of all your typing practice | |
| 2. Typing.io | |
| Typing.io is the most famous typing practice website for programmers so far, and it supports both Free Plan and Mechanical Plan. | |
| 3. Agilefingers.com | |
| AgileFingers is a course that teaches you how to master touch typing. Fast typing exercises are divided into lessons, texts, and games. | |
| 4. Speedcoder.net |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1) pug = html | |
| span.text = <span class="text"></span> | |
| .block = <div class="block"></div> | |
| 2) Передать содержимое блока | |
| // обычно делают так | |
| .block Текст внутри блока = <div class="block">Текст внутри блока</div> | |
| // а можно еще так | |
| .block | |
| | Текст внутри блока |