- Modal Window
- Login modal window
- Folding List
- Glide button for switching the theme
This project includes:
- A simple modal window test using HTML, CSS, and JavaScript.
- A simple folding list.
- A glide button for switching the theme
index.html
: The main HTML file.styles.css
: The CSS file for styling.about.js
: The JavaScript file for about modal window functionality .login.js
: The JavaScript file for login modal window functionality.folding.js
: The JavaScript file for folding list functionality.switch_theme.js
: The JavaScript file for glide button for switching the theme functionality.
- Open
index.html
in your browser. - Click the button to open the modal window.
- Use the folding list to view more information.
<!-- HTML Code Example -->
<div class="modal">
<div class="modal-content">
<span class="close-button">×</span>
<p>This is an example of a modal window.</p>
</div>
</div>