Hello every body
i am new in this forum. Any body share me or give me the website tutorials link how to make one page scroll drown website page. I want to get also more nice website template this kind of
Hello every body
i am new in this forum. Any body share me or give me the website tutorials link how to make one page scroll drown website page. I want to get also more nice website template this kind of
A concise, practical note for and anyone else following this thread (comments from and about the broken link are valid; ’s example shows the “full‑screen slide” style):
Two common approaches make a single-page, scroll‑down site:
scroll-behavior: smooth) for lightweight, SEO‑friendly builds.Minimal structure and CSS to get a robust, accessible start:
<!-- HTML -->
<nav>
<a href="#hero">Home</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</nav>
<main>
<section id="hero" class="section">Hero</section>
<section id="about" class="section">About</section>
<section id="contact" class="section">Contact</section>
</main> /* CSS */
html { scroll-behavior: smooth; }
body { margin: 0; }
main { height: 100vh; overflow-y: auto; scroll-snap-type: y mandatory; }
.section { height: 100vh; scroll-snap-align: start; display:flex; align-items:center; justify-content:center; }
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } } Practical notes and troubleshooting
prefers-reduced-motion to disable animations for users who opt out.This gives a stable, modern baseline; add progressive enhancements (parallax, transitions) only after confirming performance and accessibility.
Jump to Post— Member #949455I am new in this forum. Any body share me or give me the website tutorials link how to make one page scroll drown website page. I want to get also more nice website template this kind of
If you want some help or want to learn something …
I am new in this forum. Any body share me or give me the website tutorials link how to make one page scroll drown website page. I want to get also more nice website template this kind of
If you want some help or want to learn something just post it. I don't click links.
And anyway, your link just comes back to this page.
You mean, like ?
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.