Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous"> <style> body { padding-top: 1em; } </style> <div class="container-fluid"> <div class="card text-center" style="max-width: 202px;"> <!-- Heading --> <div class="card-body"> <h4 class="card-title">Sun Gone</h4> <h6 class="card-subtitle text-muted">Sun disappears!</h6> </div> <!-- Image --> <img src="/pix/samples/12s.jpg" alt="Photo of sunset"> <!-- Text Content --> <div class="card-body"> <p class="card-text">The sun disappeared behind the horizon today. Experts claim it could be gone for good!</p> <a href="#" class="btn btn-primary">Full Report</a> </div> </div> </div> <!-- Bundled --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>