Skip to content

Files

Latest commit

Oct 18, 2024
2b9fb4d · Oct 18, 2024

History

History

beginner

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Oct 18, 2024
Oct 18, 2024

Beginner

Welcome to the beginner project! This folder contains a simple web project to help you get started with HTML and Bootstrap.

Structure

  • index.html: The main HTML file for the project.

index.html

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>

References

How to Proceed

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!