“html ссылка на раздел на странице” Ответ

html ссылка на раздел на странице

<!--1. create link tag with href containing "[#][section to direct] with name-->
<a href = #about-section>About</a>

<!--2. create identifier for the section you would like to navigate to with "id" = name-->
<section id = "about-section"> <h1>This is the about section</h1> </section>

Courageous Chinchilla

Перейти к ID HTML

<a href="#sushi">Sushi</a>
<a href="#bbq">BBQ</a>

Sample section:
<div id='sushi'><a name='sushi'></a></div>
<div id='bbq'><a name='bbq'></a></div>
Andrew Lautenbach

Ссылка на раздел на странице HTML

<!-- #top is the ID of the div where u wanna link to -->
<a href="#top">Go back to the top!</a>

<div id="top"></div>
Andrew Lautenbach

Ссылка, которая прокручивает страницу

<a href="#google"></a>

<div id="google"></div>
Crazy Cod

Ответы похожие на “html ссылка на раздел на странице”

Вопросы похожие на “html ссылка на раздел на странице”

Больше похожих ответов на “html ссылка на раздел на странице” по HTML

Смотреть популярные ответы по языку

Смотреть другие языки программирования