How to Create a Website Side Panel ?
SEO Help and Tips
How to Create a Website Side Panel ?
Here is the example code of sidebar.
<<head>> Section:
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<<body>> Section:
<div class="offcanvas offcanvas-start" id="demo">
<div class="offcanvas-header">
<h1 class="offcanvas-title">Search Keyword</h1>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas"></button>
</div>
<div class="offcanvas-body">
<p>
Your data here
</p>
<button class="btn btn-secondary" type="button">More</button>
</div>
</div>
<div class="container-fluid mt-3">
<button class="btn btn-primary" type="button" data-bs-toggle="offcanvas" data-bs-target="#demo">
Show Messages
</button>
</div>
Comments
Post a Comment
Thanks for your Comments.