Created
April 20, 2021 02:42
-
-
Save ichii731/9243d8dfc26ea164529b5e716b78db75 to your computer and use it in GitHub Desktop.
This file contains 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> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Scroll Down Button</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<section id="sec-1"> | |
<div class="container"> | |
<h1>Home Page </h1> | |
<a href="#sec-2"> | |
<div class="scroll-down"></div> | |
</a> | |
</div> | |
</section> | |
<section id="sec-2"> | |
<div class="container"> | |
<h1>Scroll Page </h1> | |
</div> | |
</section> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment