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
| <div class="container"> | |
| <table> | |
| <thead> | |
| <tr> | |
| <th>Название услуги</th> | |
| <th>Сайт</th> | |
| <th>Сроки</th> | |
| <th>Количество страниц</th> | |
| <th>Стоимость</th> | |
| </tr> |
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
| /* | |
| * запрещаем вводить цифры | |
| * http://learn.javascript.ru/keyboard-events | |
| */ | |
| // keydown event | |
| e = (e) ? e : window.event; | |
| var charCode = (e.which) ? e.which : e.keyCode; | |
| // если от 0 до 9 |
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
| doctype html | |
| html | |
| head | |
| meta(charset = 'utf-8') | |
| meta(name='viewport', content="initial-scale=1.0, width=device-width") | |
| link(rel="stylesheet", href="css/main.css") | |
| title | |
| block title | |
| body | |
| block main |
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
| <button class="accordion">Вопрос 1</button> | |
| <div class="panel"> | |
| <p>Ответ на Вопрос 1...</p> | |
| </div> | |
| <button class="accordion">Вопрос 2</button> | |
| <div class="panel"> | |
| <p>Ответ на Вопрос 2...</p> | |
| </div> |