Compare commits

...

2 Commits

Author SHA1 Message Date
e8065c3d7c
add revome bullet for ul 2021-12-15 21:37:47 +03:00
fdd9e60361
add load page 2021-12-12 01:09:28 +03:00
4 changed files with 10 additions and 1 deletions

View File

@ -1,4 +1,5 @@
# CSS
- [`@font-face`](font-face.css) - пример добавления шрифта из файла
- [Pixel Art](pixe-art.css) - настройки для рендера Pixel Art на `canvas`
- [Pixel Art](pixel-art.css) - настройки для рендера Pixel Art на `canvas`
- [Список без точек](ul-remove-bullets.css) - убираем точки (bullet) в списках

View File

@ -0,0 +1,3 @@
ul {
list-style-type: none;
}

View File

@ -4,6 +4,7 @@
- [Arrays](arrays.js) - работа с массивами
- [Spread syntax](spread.js) - распаковка массива в аргументы
- [fetch](fetch.js) - ...
- [location.href](location.href.js) - Переход на другую страницу
## Other
- [Webpack](webpack.md) example config

View File

@ -0,0 +1,4 @@
// Перейти на нужную страницу можно с помощью JavaScript
// document.location.href = "https://www.site";
document.location.href = url.value;