Demo 5 - Kalatori: Kasaus

html_css_basics | ├── demos | | │ └── d5_kalatori | | │ ├── index.html │ ├── common.css │ ├── header.html │ ├── header.css │ ├── markkinat.html │ ├── markkinat.css │ ├── hinnasto.html │ ├── hinnasto.css │ ├── yhteys.html │ ├── yhteys.css │ ├── sijainti.html │ ├── sijainti.css │ ├── footer.html │ ├── footer.css | | │ └─── img │ │ ├── kuva_1.jpg │ │ └── kuva_2.jpg |

Tehtävä

<script> document.querySelectorAll('a[href^="#"]').forEach((anchor) => { anchor.addEventListener('click', function (e) { e.preventDefault(); document.querySelector(this.getAttribute('href')).scrollIntoView({ behavior: 'smooth', block: 'start', }); }); }); </script> layout_kalatori