Welcome to the beginner project! This folder contains a simple web project to help you get started with HTML and Bootstrap.
index.html
: The main HTML file for the project.
The index.html
file includes basic HTML structure and
references to Bootstrap for styling and interactive components.
It contains a modal example to demonstrate how Bootstrap components can be used.
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="exampleModalLabel">Modal title</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">Random text for the modal.</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
- Bootstrap Documentation: Learn more about Bootstrap components and how to use them.
- MDN HTML Documentation: Comprehensive guide to HTML elements.
Open index.html in your browser to see the basic structure and Bootstrap components in action. Explore the Bootstrap documentation to understand how to use different components. Modify index.html to add your own content and experiment with different Bootstrap components. Happy coding!