Milligram
Home Bluma Bootstrap Materialize Foundation

Card List


Card Text


Page


Form


Footer


Button


Component




...
Card 3

This card has a footer and a button for interaction.

Last updated 5 mins ago Details
...
Card 3

This card has a footer and a button for interaction.

Last updated 5 mins ago Details
...
Card 3

This card has a footer and a button for interaction.

Last updated 5 mins ago Details

              
              

              <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Milligram Cards</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.min.css">
  <style>
    .card {
      border: 1px solid #e1e1e1;
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .card img {
      max-width: 100%;
      height: auto;
    }
    .card-body {
      padding: 1rem;
      flex-grow: 1;
    }
    .card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      background-color: #f9f9f9;
      border-top: 1px solid #e1e1e1;
    }
    .btn {
      text-decoration: none;
      color: #fff;
      background-color: #9b4dca;
      padding: 0.5rem 1rem;
      border-radius: 4px;
    }
    .btn:hover {
      background-color: #7d39a6;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="row">
      <div class="column">
        <div class="card">
          <img src="https://dummyimage.com/700x400" alt="Card Image">
          <div class="card-body">
            <h5>Card 1</h5>
            <p>This card has a footer and a button for interaction.</p>
          </div>
          <div class="card-footer">
            <small>Last updated 5 mins ago</small>
            <a href="#" class="btn">Details</a>
          </div>
        </div>
      </div>
      <div class="column">
        <div class="card">
          <img src="https://dummyimage.com/700x400" alt="Card Image">
          <div class="card-body">
            <h5>Card 2</h5>
            <p>This card has a footer and a button for interaction.</p>
          </div>
          <div class="card-footer">
            <small>Last updated 10 mins ago</small>
            <a href="#" class="btn">Details</a>
          </div>
        </div>
      </div>
      <div class="column">
        <div class="card">
          <img src="https://dummyimage.com/700x400" alt="Card Image">
          <div class="card-body">
            <h5>Card 3</h5>
            <p>This card has a footer and a button for interaction.</p>
          </div>
          <div class="card-footer">
            <small>Last updated 15 mins ago</small>
            <a href="#" class="btn">Details</a>
          </div>
        </div>
      </div>
    </div>
  </div>
</body>
</html>



        
          

...
Featured
Card 8

This card has a badge overlay on the image.


Read More Share
...
Featured
Card 8

This card has a badge overlay on the image.


Read More Share
...
Featured
Card 8

This card has a badge overlay on the image.


Read More Share

                                            
                              

                              <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Milligram Cards</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.min.css">
  <style>
    .row {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .col {
      flex: 1 1 calc(33.333% - 1rem);
      box-sizing: border-box;
    }
    .card {
      border: 1px solid #e1e1e1;
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .card img {
      max-width: 100%;
      height: auto;
    }
    .position-relative {
      position: relative;
    }
    .position-absolute {
      position: absolute;
    }
    .top-0 {
      top: 0;
    }
    .start-0 {
      left: 0;
    }
    .bg-dark {
      background-color: #000;
    }
    .bg-opacity-50 {
      opacity: 0.5;
    }
    .text-white {
      color: #fff;
    }
    .p-2 {
      padding: 0.5rem;
    }
    .card-body {
      padding: 1rem;
      flex-grow: 1;
    }
    .btn {
      text-decoration: none;
      color: #fff;
      background-color: #3498db;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      display: inline-block;
    }
    .btn-secondary {
      background-color: #7f8c8d;
    }
    .btn-sm {
      padding: 0.25rem 0.75rem;
    }
    .ms-2 {
      margin-left: 0.5rem;
    }
    .mt-auto {
      margin-top: auto;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="row">
      <div class="col">
        <div class="card">
          <div class="position-relative">
            <img src="https://dummyimage.com/722x402" alt="Card Image">
            <div class="position-absolute top-0 start-0 bg-dark bg-opacity-50 text-white p-2">
              Featured
            </div>
          </div>
          <div class="card-body">
            <h5>Card 1</h5>
            <p>This card has a badge overlay on the image.</p>
            <div class="mt-auto">
              <a href="#" class="btn btn-sm">Read More</a>
              <a href="#" class="btn btn-secondary btn-sm ms-2">Share</a>
            </div>
          </div>
        </div>
      </div>
      <div class="col">
        <div class="card">
          <div class="position-relative">
            <img src="https://dummyimage.com/722x402" alt="Card Image">
            <div class="position-absolute top-0 start-0 bg-dark bg-opacity-50 text-white p-2">
              Featured
            </div>
          </div>
          <div class="card-body">
            <h5>Card 2</h5>
            <p>This card has a badge overlay on the image.</p>
            <div class="mt-auto">
              <a href="#" class="btn btn-sm">Read More</a>
              <a href="#" class="btn btn-secondary btn-sm ms-2">Share</a>
            </div>
          </div>
        </div>
      </div>
      <div class="col">
        <div class="card">
          <div class="position-relative">
            <img src="https://dummyimage.com/722x402" alt="Card Image">
            <div class="position-absolute top-0 start-0 bg-dark bg-opacity-50 text-white p-2">
              Featured
            </div>
          </div>
          <div class="card-body">
            <h5>Card 3</h5>
            <p>This card has a badge overlay on the image.</p>
            <div class="mt-auto">
              <a href="#" class="btn btn-sm">Read More</a>
              <a href="#" class="btn btn-secondary btn-sm ms-2">Share</a>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</body>
</html>



                        
                          

Card 3

A card with a vertical alignment for image and text.

...
Card 3

A card with a vertical alignment for image and text.

...
Card 3

A card with a vertical alignment for image and text.

...

                                  
                              

                              <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Milligram Cards</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.min.css">
  <style>
    .row {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .col {
      flex: 1 1 calc(33.333% - 1rem);
      box-sizing: border-box;
    }
    .card {
      border: 1px solid #e1e1e1;
      border-radius: 4px;
      background-color: #f9f9f9;
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: 1rem;
    }
    .card-body {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .card-title {
      margin: 0;
      font-size: 1.25rem;
      font-weight: bold;
    }
    .card-text {
      margin: 0.5rem 0 0 0;
      font-size: 0.9rem;
      color: #555;
    }
    .img-fluid {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
    }
    .ms-3 {
      margin-left: 1rem;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="row">
      <div class="col">
        <div class="card">
          <div class="card-body">
            <div>
              <h5 class="card-title">Card 1</h5>
              <p class="card-text">A card with a vertical alignment for image and text.</p>
            </div>
            <img src="https://dummyimage.com/722x402" class="img-fluid ms-3" style="width: 120px;" alt="...">
          </div>
        </div>
      </div>
      <div class="col">
        <div class="card">
          <div class="card-body">
            <div>
              <h5 class="card-title">Card 2</h5>
              <p class="card-text">A card with a vertical alignment for image and text.</p>
            </div>
            <img src="https://dummyimage.com/722x402" class="img-fluid ms-3" style="width: 120px;" alt="...">
          </div>
        </div>
      </div>
      <div class="col">
        <div class="card">
          <div class="card-body">
            <div>
              <h5 class="card-title">Card 3</h5>
              <p class="card-text">A card with a vertical alignment for image and text.</p>
            </div>
            <img src="https://dummyimage.com/722x402" class="img-fluid ms-3" style="width: 120px;" alt="...">
          </div>
        </div>
      </div>
    </div>
  </div>
</body>
</html>

        
                        
                          

Card 4

A card with a list group to show details.

  • Item 1
  • Item 2
  • Item 3
Card 4

A card with a list group to show details.

  • Item 1
  • Item 2
  • Item 3
Card 4

A card with a list group to show details.

  • Item 1
  • Item 2
  • Item 3

                      
                      
                      <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Milligram Cards with List</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.min.css">
  <style>
    .row {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .col {
      flex: 1 1 calc(33.333% - 1rem);
      box-sizing: border-box;
    }
    .card {
      border: 1px solid #e1e1e1;
      border-radius: 4px;
      background-color: #f9f9f9;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .card-title {
      margin: 0;
      font-size: 1.25rem;
      font-weight: bold;
    }
    .card-text {
      margin: 0.5rem 0 1rem 0;
      font-size: 0.9rem;
      color: #555;
    }
    .list-group {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .list-group-item {
      padding: 0.75rem 1rem;
      border-top: 1px solid #e1e1e1;
      background-color: #fff;
    }
    .list-group-item:first-child {
      border-top: none;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="row">
      <div class="col">
        <div class="card">
          <div class="card-body">
            <h5 class="card-title">Card 1</h5>
            <p class="card-text">A card with a list group to show details.</p>
            <ul class="list-group">
              <li class="list-group-item">Item 1</li>
              <li class="list-group-item">Item 2</li>
              <li class="list-group-item">Item 3</li>
            </ul>
          </div>
        </div>
      </div>
      <div class="col">
        <div class="card">
          <div class="card-body">
            <h5 class="card-title">Card 2</h5>
            <p class="card-text">A card with a list group to show details.</p>
            <ul class="list-group">
              <li class="list-group-item">Item 1</li>
              <li class="list-group-item">Item 2</li>
              <li class="list-group-item">Item 3</li>
            </ul>
          </div>
        </div>
      </div>
      <div class="col">
        <div class="card">
          <div class="card-body">
            <h5 class="card-title">Card 3</h5>
            <p class="card-text">A card with a list group to show details.</p>
            <ul class="list-group">
              <li class="list-group-item">Item 1</li>
              <li class="list-group-item">Item 2</li>
              <li class="list-group-item">Item 3</li>
            </ul>
          </div>
        </div>
      </div>
    </div>
  </div>
</body>
</html>



       
                
                  

Card 23

This card includes a badge for notifications.

Notifications 5
  • New Comment
  • Friend Request
  • System Update
Card 23

This card includes a badge for notifications.

Notifications 5
  • New Comment
  • Friend Request
  • System Update
Card 23

This card includes a badge for notifications.

Notifications 5
  • New Comment
  • Friend Request
  • System Update

                      
                      

                      <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Milligram Notifications Card</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.min.css">
  <style>
    .row {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .col {
      flex: 1 1 calc(33.333% - 1rem);
      box-sizing: border-box;
    }
    .card {
      border: 1px solid #e1e1e1;
      border-radius: 4px;
      background-color: #f9f9f9;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .card-title {
      margin: 0 0 1rem 0;
      font-size: 1.25rem;
      font-weight: bold;
    }
    .card-text {
      margin: 0 0 1rem 0;
      font-size: 0.9rem;
      color: #555;
    }
    .badge {
      display: inline-block;
      background-color: #dc3545;
      color: #fff;
      border-radius: 50%;
      padding: 0.25rem 0.5rem;
      font-size: 0.8rem;
    }
    .list-group {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .list-group-item {
      padding: 0.75rem 1rem;
      border-top: 1px solid #e1e1e1;
      background-color: #fff;
    }
    .list-group-item:first-child {
      border-top: none;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="row">
      <div class="col">
        <div class="card">
          <div class="card-body">
            <h5 class="card-title">Card 1</h5>
            <p class="card-text">This card includes a badge for notifications.</p>
            <h6 class="mb-3">
              Notifications <span class="badge">5</span>
            </h6>
            <ul class="list-group">
              <li class="list-group-item">New Comment</li>
              <li class="list-group-item">Friend Request</li>
              <li class="list-group-item">System Update</li>
            </ul>
          </div>
        </div>
      </div>
      <div class="col">
        <div class="card">
          <div class="card-body">
            <h5 class="card-title">Card 2</h5>
            <p class="card-text">This card includes a badge for notifications.</p>
            <h6 class="mb-3">
              Notifications <span class="badge">5</span>
            </h6>
            <ul class="list-group">
              <li class="list-group-item">New Comment</li>
              <li class="list-group-item">Friend Request</li>
              <li class="list-group-item">System Update</li>
            </ul>
          </div>
        </div>
      </div>
      <div class="col">
        <div class="card">
          <div class="card-body">
            <h5 class="card-title">Card 3</h5>
            <p class="card-text">This card includes a badge for notifications.</p>
            <h6 class="mb-3">
              Notifications <span class="badge">5</span>
            </h6>
            <ul class="list-group">
              <li class="list-group-item">New Comment</li>
              <li class="list-group-item">Friend Request</li>
              <li class="list-group-item">System Update</li>
            </ul>
          </div>
        </div>
      </div>
    </div>
  </div>
</body>
</html>



                     
                  

Card 25

A dark-themed card with an accordion.

This is the first item's accordion body.

This is the second item's accordion body.
Card 25

A dark-themed card with an accordion.

This is the first item's accordion body.

This is the second item's accordion body.
Card 25

A dark-themed card with an accordion.

This is the first item's accordion body.

This is the second item's accordion body.

                      
                      
                      <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Milligram Accordion</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.min.css">
  <style>
    .card {
      border: 1px solid #ddd;
      border-radius: 4px;
      padding: 1rem;
      background-color: #333;
      color: #fff;
    }

    .accordion-item {
      margin-top: 1rem;
    }

    .accordion-button {
      background: none;
      border: none;
      color: #fff;
      text-align: left;
      width: 100%;
      cursor: pointer;
      padding: 0.5rem;
      font-size: 1rem;
    }

    .accordion-body {
      margin: 0.5rem 0 0;
      padding: 0.5rem;
      background-color: #444;
      color: #ddd;
      border: 1px solid #555;
      border-radius: 4px;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="row">
      <div class="column column-33">
        <div class="card">
          <h5>Card 25</h5>
          <p>A dark-themed card with an accordion.</p>
          <div class="accordion">
            <div class="accordion-item">
              <button class="accordion-button" onclick="toggleAccordion('accordion1')">Accordion Item #1</button>
              <div id="accordion1" class="accordion-body" style="display: none;">
                This is the first item's accordion body.
              </div>
            </div>
            <div class="accordion-item">
              <button class="accordion-button" onclick="toggleAccordion('accordion2')">Accordion Item #2</button>
              <div id="accordion2" class="accordion-body" style="display: none;">
                This is the second item's accordion body.
              </div>
            </div>
          </div>
        </div>
      </div>
      <div class="column column-33">
        <div class="card">
          <h5>Card 25</h5>
          <p>A dark-themed card with an accordion.</p>
          <div class="accordion">
            <div class="accordion-item">
              <button class="accordion-button" onclick="toggleAccordion('accordion3')">Accordion Item #1</button>
              <div id="accordion3" class="accordion-body" style="display: none;">
                This is the first item's accordion body.
              </div>
            </div>
            <div class="accordion-item">
              <button class="accordion-button" onclick="toggleAccordion('accordion4')">Accordion Item #2</button>
              <div id="accordion4" class="accordion-body" style="display: none;">
                This is the second item's accordion body.
              </div>
            </div>
          </div>
        </div>
      </div>
      <div class="column column-33">
        <div class="card">
          <h5>Card 25</h5>
          <p>A dark-themed card with an accordion.</p>
          <div class="accordion">
            <div class="accordion-item">
              <button class="accordion-button" onclick="toggleAccordion('accordion5')">Accordion Item #1</button>
              <div id="accordion5" class="accordion-body" style="display: none;">
                This is the first item's accordion body.
              </div>
            </div>
            <div class="accordion-item">
              <button class="accordion-button" onclick="toggleAccordion('accordion6')">Accordion Item #2</button>
              <div id="accordion6" class="accordion-body" style="display: none;">
                This is the second item's accordion body.
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>

  <script>
    function toggleAccordion(id) {
      const element = document.getElementById(id);
      if (element.style.display === 'none' || element.style.display === '') {
        element.style.display = 'block';
      } else {
        element.style.display = 'none';
      }
    }
  </script>
</body>
</html>



                     
                  

Card 7

This card uses a table to organize information.

Feature Details
Speed Fast
Reliability High
Card 7

This card uses a table to organize information.

Feature Details
Speed Fast
Reliability High
Card 7

This card uses a table to organize information.

Feature Details
Speed Fast
Reliability High

                      
                      
                      <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Card with Table</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.min.css">
  <style>
    .card {
      border: 1px solid #ddd;
      border-radius: 4px;
      padding: 1rem;
      background-color: #f9f9f9;
      margin-bottom: 1rem;
    }

    .card h5 {
      font-size: 1.2rem;
      font-weight: bold;
    }

    .card p {
      color: #555;
    }

    table {
      width: 100%;
      margin-top: 1rem;
      border-collapse: collapse;
    }

    table, th, td {
      border: 1px solid #ddd;
    }

    th, td {
      padding: 0.5rem;
      text-align: left;
    }

    th {
      background-color: #f0f0f0;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="row">
      <div class="column column-33">
        <div class="card">
          <h5>Card 7</h5>
          <p>This card uses a table to organize information.</p>
          <table>
            <thead>
              <tr>
                <th>Feature</th>
                <th>Details</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td>Speed</td>
                <td>Fast</td>
              </tr>
              <tr>
                <td>Reliability</td>
                <td>High</td>
              </tr>
            </tbody>
          </table>
        </div>
      </div>
      <div class="column column-33">
        <div class="card">
          <h5>Card 7</h5>
          <p>This card uses a table to organize information.</p>
          <table>
            <thead>
              <tr>
                <th>Feature</th>
                <th>Details</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td>Speed</td>
                <td>Fast</td>
              </tr>
              <tr>
                <td>Reliability</td>
                <td>High</td>
              </tr>
            </tbody>
          </table>
        </div>
      </div>
      <div class="column column-33">
        <div class="card">
          <h5>Card 7</h5>
          <p>This card uses a table to organize information.</p>
          <table>
            <thead>
              <tr>
                <th>Feature</th>
                <th>Details</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td>Speed</td>
                <td>Fast</td>
              </tr>
              <tr>
                <td>Reliability</td>
                <td>High</td>
              </tr>
            </tbody>
          </table>
        </div>
      </div>
    </div>
  </div>
</body>
</html>




                     
                  

Card Header
Card 8

This card uses a header and footer to frame its content.

Footer Text
Card Header
Card 8

This card uses a header and footer to frame its content.

Footer Text
Card Header
Card 8

This card uses a header and footer to frame its content.

Footer Text

                      
                      
                      <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Card with Header and Footer</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.min.css">
  <style>
    .card {
      border: 1px solid #ddd;
      border-radius: 4px;
      background-color: #fff;
      margin-bottom: 1rem;
    }

    .card-header, .card-footer {
      background-color: #007bff;
      color: #fff;
      padding: 0.5rem;
      text-align: center;
    }

    .card-footer {
      background-color: #6c757d;
    }

    .card-body {
      padding: 1rem;
    }

    .card-title {
      font-size: 1.2rem;
      font-weight: bold;
    }

    .card-text {
      color: #555;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="row">
      <div class="column column-33">
        <div class="card">
          <div class="card-header">
            Card Header
          </div>
          <div class="card-body">
            <h5 class="card-title">Card 8</h5>
            <p class="card-text">This card uses a header and footer to frame its content.</p>
          </div>
          <div class="card-footer">
            Footer Text
          </div>
        </div>
      </div>
      <div class="column column-33">
        <div class="card">
          <div class="card-header">
            Card Header
          </div>
          <div class="card-body">
            <h5 class="card-title">Card 8</h5>
            <p class="card-text">This card uses a header and footer to frame its content.</p>
          </div>
          <div class="card-footer">
            Footer Text
          </div>
        </div>
      </div>
      <div class="column column-33">
        <div class="card">
          <div class="card-header">
            Card Header
          </div>
          <div class="card-body">
            <h5 class="card-title">Card 8</h5>
            <p class="card-text">This card uses a header and footer to frame its content.</p>
          </div>
          <div class="card-footer">
            Footer Text
          </div>
        </div>
      </div>
    </div>
  </div>
</body>
</html>



                     
                  

Our Team

Discover the amazing individuals behind our success, working together to make a difference.

team member
John Doe

UI Developer

Creating seamless user experiences and innovative interfaces with a touch of creativity.

team member
Jane Smith

Graphic Designer

Crafting stunning visual designs that inspire and captivate audiences worldwide.

team member
Emily Brown

Software Engineer

Developing robust and scalable solutions to power innovative technologies.


                      
                      
                      <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Our Team</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.min.css">
  <style>
    body {
      background-color: #f4f4f4;
    }

    .section-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .section-header h1 {
      font-weight: bold;
      color: #333;
      text-transform: uppercase;
    }

    .section-header p {
      color: #777;
    }

    .team-member {
      display: flex;
      align-items: center;
      background-color: #fff;
      padding: 1rem;
      border-radius: 4px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      margin-bottom: 1rem;
    }

    .team-member img {
      border-radius: 50%;
      margin-right: 1rem;
    }

    .team-member .social-icons a {
      color: #777;
      margin-right: 0.5rem;
    }

    .team-member h5 {
      margin-bottom: 0.5rem;
      color: #333;
    }

    .team-member p {
      color: #777;
    }
  </style>
</head>
<body>
  <section class="section">
    <div class="container">
      <div class="section-header">
        <h1>Our Team</h1>
        <p>Discover the amazing individuals behind our success, working together to make a difference.</p>
      </div>
      <div class="row">
        <div class="column column-33">
          <div class="team-member">
            <img src="https://dummyimage.com/200x200" alt="team member" width="100" height="100">
            <div>
              <h5>John Doe</h5>
              <p>UI Developer</p>
              <p>Creating seamless user experiences and innovative interfaces with a touch of creativity.</p>
              <div class="social-icons">
                <a href="#">Facebook</a>
                <a href="#">Twitter</a>
                <a href="#">LinkedIn</a>
              </div>
            </div>
          </div>
        </div>
        <div class="column column-33">
          <div class="team-member">
            <img src="https://dummyimage.com/201x201" alt="team member" width="100" height="100">
            <div>
              <h5>Jane Smith</h5>
              <p>Graphic Designer</p>
              <p>Crafting stunning visual designs that inspire and captivate audiences worldwide.</p>
              <div class="social-icons">
                <a href="#">Facebook</a>
                <a href="#">Twitter</a>
                <a href="#">LinkedIn</a>
              </div>
            </div>
          </div>
        </div>
        <div class="column column-33">
          <div class="team-member">
            <img src="https://dummyimage.com/204x204" alt="team member" width="100" height="100">
            <div>
              <h5>Emily Brown</h5>
              <p>Software Engineer</p>
              <p>Developing robust and scalable solutions to power innovative technologies.</p>
              <div class="social-icons">
                <a href="#">Facebook</a>
                <a href="#">Twitter</a>
                <a href="#">LinkedIn</a>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </section>
</body>
</html>




                     
                  

NOBALISH

We provide the best services for your business growth. Let us help you reach new heights.

Image

                      
                      
                      <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>NOBALISH</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.min.css">
  <style>
    .section-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2rem 0;
    }

    .text-section {
      max-width: 50%;
    }

    .image-section img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .heading {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    .paragraph {
      color: #555;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="section-container">
      <div class="text-section">
        <h2 class="heading">NOBALISH</h2>
        <p class="paragraph">We provide the best services for your business growth. Let us help you reach new heights.</p>
      </div>
      <div class="image-section">
        <img src="https://dummyimage.com/722x402" alt="Image">
      </div>
    </div>
  </div>
</body>
</html>




                     
                  

Innovative Solutions

Discover cutting-edge solutions for your business challenges. Let us help you stay ahead in a competitive world.

Trusted by top companies
Image

                      
                      
                      <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Innovative Solutions</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.min.css">
  <style>
    .section-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 3rem 0;
      background-color: #f8f9fa;
    }

    .text-section {
      max-width: 50%;
    }

    .image-section img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .heading {
      font-size: 2.5rem;
      font-weight: bold;
      color: #007bff;
      margin-bottom: 1rem;
    }

    .paragraph {
      color: #555;
      margin-bottom: 1rem;
    }

    .check-icon {
      display: flex;
      align-items: center;
      margin-top: 1rem;
    }

    .check-icon i {
      color: #28a745;
      margin-right: 0.5rem;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="section-container">
      <div class="text-section">
        <h3 class="heading">Innovative Solutions</h3>
        <p class="paragraph">Discover cutting-edge solutions for your business challenges. Let us help you stay ahead in a competitive world.</p>
        <div class="check-icon">
          <i class="fas fa-check-circle"></i>
          <span>Trusted by top companies</span>
        </div>
      </div>
      <div class="image-section">
        <img src="https://dummyimage.com/722x402" alt="Image">
      </div>
    </div>
  </div>
</body>
</html>




                     
                  

Discover cutting-edge solutions .

Discover cutting-edge solutions for your business challenges. Let us help you stay ahead in a competitive world.

hero

                      
                      
                      <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Discover Solutions</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.min.css">
  <style>
    .section-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 3rem 0;
    }

    .text-section {
      max-width: 50%;
      text-align: left;
    }

    .text-section h1 {
      font-size: 2.5rem;
      font-weight: bold;
      color: #343a40;
      margin-bottom: 1rem;
    }

    .text-section p {
      color: #6c757d;
      margin-bottom: 1rem;
    }

    .text-section button {
      margin-right: 1rem;
    }

    .image-section img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
  </style>
</head>
<body>
  <div class="container">
    <section class="section-container">
      <div class="text-section">
        <h1>Discover cutting-edge solutions.</h1>
        <p>Discover cutting-edge solutions for your business challenges. Let us help you stay ahead in a competitive world.</p>
        <button class="button">Button</button>
        <button class="button button-outline">Button</button>
      </div>
      <div class="image-section">
        <img class="img-fluid rounded" alt="hero" src="https://dummyimage.com/720x600">
      </div>
    </section>
  </div>
</body>
</html>




                     
                  

Modern Features Showcase

Explore a range of cutting-edge features designed to elevate your experience.

Innovative Design
Seamless Integration
Enhanced Usability
Reliable Performance
Customizable Options
Scalable Solutions
hero

                      
                      

                      <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Modern Features Showcase</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.min.css">
  <style>
    .section-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 3rem 0;
    }

    .text-section {
      max-width: 50%;
      text-align: left;
    }

    .text-section h1 {
      font-size: 2.5rem;
      font-weight: bold;
      color: #007bff;
      margin-bottom: 1rem;
    }

    .text-section p {
      color: #6c757d;
      margin-bottom: 1rem;
    }

    .feature-item {
      display: flex;
      align-items: center;
      padding: 1rem;
      background-color: #f8f9fa;
      border-radius: 4px;
      margin-bottom: 1rem;
    }

    .feature-item i {
      color: #007bff;
      font-size: 1.5rem;
      margin-right: 1rem;
    }

    .feature-item span {
      font-weight: 500;
    }

    .image-section img {
      width: 100%;
      height: auto;
      border-radius: 4px;
    }
  </style>
</head>
<body>
  <div class="container">
    <section class="section-container">
      <div class="text-section">
        <h1>Modern Features Showcase</h1>
        <p>Explore a range of cutting-edge features designed to elevate your experience.</p>
        <div class="feature-item">
          <i class="fas fa-check-circle"></i>
          <span>Innovative Design</span>
        </div>
        <div class="feature-item">
          <i class="fas fa-check-circle"></i>
          <span>Seamless Integration</span>
        </div>
        <div class="feature-item">
          <i class="fas fa-check-circle"></i>
          <span>Enhanced Usability</span>
        </div>
        <div class="feature-item">
          <i class="fas fa-check-circle"></i>
          <span>Reliable Performance</span>
        </div>
        <div class="feature-item">
          <i class="fas fa-check-circle"></i>
          <span>Customizable Options</span>
        </div>
        <div class="feature-item">
          <i class="fas fa-check-circle"></i>
          <span>Scalable Solutions</span>
        </div>
      </div>
      <div class="image-section">
        <img class="img-fluid" alt="hero" src="https://dummyimage.com/720x600">
      </div>
    </section>
  </div>

  <!-- FontAwesome for icons -->
  <script src="https://kit.fontawesome.com/a076d05399.js"></script>
</body>
</html>



                     
                  

Innovative Tech Solutions

Providing cutting-edge solutions to everyday challenges through technology and design.

100

text 1

200

text 2

300

text 3

400

text 4

500

text 5

600

text 6

700

text 7

800

text 8

statistic image

                      
                      
                      <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Innovative Tech Solutions</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.min.css">
  <style>
    .section-container {
      display: flex;
      flex-wrap: wrap;
      padding: 3rem 0;
      color: #6c757d;
    }

    .text-section {
      max-width: 60%;
      padding-right: 3rem;
    }

    .text-section h1 {
      font-size: 2rem;
      font-weight: bold;
      color: #343a40;
      margin-bottom: 1rem;
    }

    .text-section p {
      color: #6c757d;
      margin-bottom: 2rem;
    }

    .stats-container {
      display: flex;
      flex-wrap: wrap;
    }

    .stat-item {
      flex: 1 1 45%;
      margin-bottom: 1.5rem;
    }

    .stat-item h2 {
      font-size: 2rem;
      font-weight: bold;
      color: #343a40;
      margin-bottom: 0.5rem;
    }

    .stat-item p {
      color: #6c757d;
    }

    .image-section {
      flex: 1 1 40%;
      max-width: 40%;
      margin-top: 2rem;
    }

    .image-section img {
      width: 100%;
      height: auto;
    }
  </style>
</head>
<body>
  <div class="container">
    <section class="section-container">
      <div class="text-section">
        <div>
          <h1>Innovative Tech Solutions</h1>
          <p>Providing cutting-edge solutions to everyday challenges through technology and design.</p>
        </div>

        <div class="stats-container">
          <div class="stat-item">
            <h2>100</h2>
            <p>text 1</p>
          </div>
          <div class="stat-item">
            <h2>200</h2>
            <p>text 2</p>
          </div>
          <div class="stat-item">
            <h2>300</h2>
            <p>text 3</p>
          </div>
          <div class="stat-item">
            <h2>400</h2>
            <p>text 4</p>
          </div>
          <div class="stat-item">
            <h2>500</h2>
            <p>text 5</p>
          </div>
          <div class="stat-item">
            <h2>600</h2>
            <p>text 6</p>
          </div>
          <div class="stat-item">
            <h2>700</h2>
            <p>text 7</p>
          </div>
          <div class="stat-item">
            <h2>800</h2>
            <p>text 8</p>
          </div>
        </div>
      </div>

      <div class="image-section">
        <img class="img-fluid" src="https://dummyimage.com/600x300" alt="statistic image">
      </div>
    </section>
  </div>

  <!-- Milligram includes no icon library, so we can link an external library if needed -->
</body>
</html>




                     
                  

Bootstrap Logo
  • Create and customize your design system
  • Leverage utilities for rapid development
  • From beginner to production-ready skills

                      
                      
                      <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Milligram Example</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.3.0/milligram.min.css">
  <style>
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }
    .card {
      border-radius: 10px;
      padding: 2rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    .bg-light {
      background-color: #f8f9fa;
    }
    .text-center {
      text-align: center;
    }
    .img-fluid {
      max-width: 100%;
      height: auto;
    }
    .border-top {
      border-top: 1px solid #e0e0e0;
      padding-top: 1.5rem;
    }
    .list-unstyled {
      padding-left: 0;
    }
    .list-unstyled li {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }
    .text-primary {
      color: #007bff;
    }
  </style>
</head>
<body>
  <div class="bg-light py-6" style="background-image: url('https://picsum.photos/id/1018/1000'); background-size: cover; background-position: center;">
    <div class="container">
      <div class="card bg-white" style="backdrop-filter: blur(20px);">
        <div class="text-center">
          <div class="mb-4">
            <img src="https://dummyimage.com/722x402" class="img-fluid" style="max-height: 100px;" alt="Logo">
          </div>
          <div class="border-top pt-4">
            <ul class="list-unstyled">
              <li>
                <i class="text-primary" style="font-size: 1.5rem;">✔</i>
                <span>Create and customize your design system</span>
              </li>
              <li>
                <i class="text-primary" style="font-size: 1.5rem;">✔</i>
                <span>Leverage utilities for rapid development</span>
              </li>
              <li>
                <i class="text-primary" style="font-size: 1.5rem;">✔</i>
                <span>From beginner to production-ready skills</span>
              </li>
            </ul>
          </div>
        </div>
      </div>
    </div>
  </div>
</body>
</html>




                     
                  

Placeholder Logo
Need innovative design frameworks?

Discover unique tools →

Searching for cutting-edge platforms?

Explore advanced systems →

Looking for a quick-start guide?

Find comprehensive insights →

Want to elevate your expertise?

Access professional resources →

Return to Next-Gen Solutions

                      
                      

                      <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Milligram Example</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.3.0/milligram.min.css">
  <style>
    body {
      background: linear-gradient(to bottom right, #e0f7fa, #80deea, #26c6da);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
    }
    .container {
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 2rem;
      max-width: 600px;
      width: 100%;
    }
    .text-info {
      color: #1e88e5;
    }
    .btn-info {
      background-color: #1e88e5;
      color: white;
      width: 100%;
      padding: 0.75rem;
      text-align: center;
      border: none;
      border-radius: 5px;
    }
    .btn-info:hover {
      background-color: #1565c0;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="text-center mb-4">
      <img src="https://dummyimage.com/722x402" class="img-fluid mb-3" alt="Placeholder Logo" />
    </div>

    <div class="mb-4">
      <h5 class="text-dark">Need innovative design frameworks?</h5>
      <p>
        <a href="/new-path/free-components" class="text-info">Discover unique tools →</a>
      </p>
    </div>

    <div class="mb-4">
      <h5 class="text-dark">Searching for cutting-edge platforms?</h5>
      <p>
        <a href="/new-path/premium-themes" class="text-info">Explore advanced systems →</a>
      </p>
    </div>

    <div class="mb-4">
      <h5 class="text-dark">Looking for a quick-start guide?</h5>
      <p>
        <a href="/new-path/cheatsheet" class="text-info">Find comprehensive insights →</a>
      </p>
    </div>

    <div class="mb-4">
      <h5 class="text-dark">Want to elevate your expertise?</h5>
      <p>
        <a href="/new-path/docs" class="text-info">Access professional resources →</a>
      </p>
    </div>

    <a href="/new-path/home" class="btn-info">
      Return to Next-Gen Solutions
    </a>
  </div>
</body>
</html>



                     
                  

Event Starting Soon

Join us for an exciting Saturday!

Start Time: 9:00 AM

02
Day
09
Hour
00
Min
00
Second

                      


                      <section class="section">
  <div class="container">
    <div class="row">
      <div class="column">
        <h6 class="text-small" style="text-transform: uppercase;">Event Starting Soon</h6>
        <h3 class="text-center">Join us for an exciting Saturday!</h3>
        <h3 class="text-center">Start Time: 9:00 AM</h3>
      </div>
      <div class="column">
        <div class="row">
          <div class="column">
            <div class="card">
              <div class="text-center">
                <div style="font-size: 2em; font-weight: bold;">02</div>
                <div class="text-small">Day</div>
              </div>
            </div>
          </div>
          <div class="column">
            <div class="card">
              <div class="text-center">
                <div style="font-size: 2em; font-weight: bold;">09</div>
                <div class="text-small">Hour</div>
              </div>
            </div>
          </div>
          <div class="column">
            <div class="card">
              <div class="text-center">
                <div style="font-size: 2em; font-weight: bold;">00</div>
                <div class="text-small">Min</div>
              </div>
            </div>
          </div>
          <div class="column">
            <div class="card">
              <div class="text-center">
                <div style="font-size: 2em; font-weight: bold;">00</div>
                <div class="text-small">Second</div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</section>



                     
                  

Feedback Overview

Extremely Happy
Many people felt very positive about the service, with a majority expressing satisfaction.
80%
Some users were less satisfied with certain aspects of the product, especially regarding usability.
60%
There were a few complaints about delivery times and product quality, but these were in the minority.
40%

Our team is reviewing all the feedback to identify key areas for improvement. We appreciate all the insights provided and will work towards making necessary enhancements. Thank you for your input!


                      

                      <section class="section">
  <div class="container">
    <div class="row">
      <div class="column">
        <h4>Feedback Overview</h4>
        <div class="row">
          <div class="column">
            <span class="dot" style="background-color: #4CAF50; width: 10px; height: 10px; border-radius: 50%; margin-right: 8px; display: inline-block;"></span>
            Extremely Happy
          </div>
        </div>
        <div class="row">
          <div class="column">
            Many people felt very positive about the service, with a majority expressing satisfaction.
          </div>
          <div class="column" style="flex: 2;">
            <div class="progress">
              <div class="progress-bar" style="width: 80%; background-color: #4CAF50; height: 20px;"></div>
            </div>
          </div>
        </div>
        <div class="row">
          <div class="column">
            Some users were less satisfied with certain aspects of the product, especially regarding usability.
          </div>
          <div class="column" style="flex: 2;">
            <div class="progress">
              <div class="progress-bar" style="width: 60%; background-color: #4CAF50; height: 20px;"></div>
            </div>
          </div>
        </div>
        <div class="row">
          <div class="column">
            There were a few complaints about delivery times and product quality, but these were in the minority.
          </div>
          <div class="column" style="flex: 2;">
            <div class="progress">
              <div class="progress-bar" style="width: 40%; background-color: #4CAF50; height: 20px;"></div>
            </div>
          </div>
        </div>
        <p class="small text-muted">
          Our team is reviewing all the feedback to identify key areas for improvement. We appreciate all the insights provided and will work towards making necessary enhancements. Thank you for your input!
        </p>
      </div>
    </div>
  </div>
</section>

<style>
  .progress {
    background-color: #f0f0f0;
    border-radius: 4px;
    width: 100%;
    margin-top: 10px;
  }
  
  .progress-bar {
    border-radius: 4px;
  }
</style>


                     
                  

Recent Announcements

  1. Updated Interface Design 05 / 10 / 2023

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus sed laoreet libero. Integer pretium tortor ut nulla condimentum.

  2. 5,000 New Job Listings 10 / 12 / 2023

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus sed laoreet libero. Integer pretium tortor ut nulla condimentum.

  3. Top Companies Hiring 30 / 09 / 2023

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus sed laoreet libero. Integer pretium tortor ut nulla condimentum.


                      
                      

                      <section class="container">
  <h3 class="h3 mb-4">Recent Announcements</h3>
  <ol class="list">
    <li class="list-item">
      <div class="flex items-start mb-4">
        <div class="circle bg-primary mr-3">
          <svg aria-hidden="true" focusable="false" class="icon" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
            <path fill="currentColor" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"></path>
          </svg>
        </div>
        <div class="card bg-light p-4 rounded shadow">
          <div class="mb-3">
            <a href="#" class="text-primary">Updated Interface Design</a>
            <span class="text-muted">05 / 10 / 2023</span>
          </div>
          <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus sed laoreet libero. Integer pretium tortor ut nulla condimentum.</p>
          <button class="button primary">Learn More</button>
          <button class="button outline">Try Demo</button>
        </div>
      </div>
    </li>
    <li class="list-item">
      <div class="flex items-start mb-4">
        <div class="circle bg-success mr-3">
          <svg aria-hidden="true" focusable="false" class="icon" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
            <path fill="currentColor" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"></path>
          </svg>
        </div>
        <div class="card bg-light p-4 rounded shadow">
          <div class="mb-3">
            <a href="#" class="text-primary">5,000 New Job Listings</a>
            <span class="text-muted">10 / 12 / 2023</span>
          </div>
          <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus sed laoreet libero. Integer pretium tortor ut nulla condimentum.</p>
          <button class="button primary">Explore More</button>
          <button class="button outline">View Demo</button>
        </div>
      </div>
    </li>
    <li class="list-item">
      <div class="flex items-start mb-4">
        <div class="circle bg-info mr-3">
          <svg aria-hidden="true" focusable="false" class="icon" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
            <path fill="currentColor" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"></path>
          </svg>
        </div>
        <div class="card bg-light p-4 rounded shadow">
          <div class="mb-3">
            <a href="#" class="text-primary">Top Companies Hiring</a>
            <span class="text-muted">30 / 09 / 2023</span>
          </div>
          <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus sed laoreet libero. Integer pretium tortor ut nulla condimentum.</p>
          <button class="button primary">Learn More</button>
          <button class="button outline">See Demo</button>
        </div>
      </div>
    </li>
  </ol>
</section>



                     
                  

We have solutions

Something Asked Questions

See what others often inquire about!

What is Bootstrap?
Bootstrap is a popular front-end framework that helps developers create beautiful, responsive websites quickly. It's filled with pre-styled components and tools to ease the web design process.

Can Bootstrap be used with React?
Absolutely! Bootstrap can be easily integrated with React to enhance the UI with responsive design elements and ready-to-use components.

What makes Bootstrap so popular?
Bootstrap's popularity is due to its easy-to-use grid system, reusable components, and extensive documentation. It helps developers quickly build well-structured and responsive websites.
Made with Bootstrap by Bootstrap Team.

                      
                      
                      <div class="container">
  <section class="section">
    <div class="text-center mb-5">
      <h3 class="h3 mb-4 mt-5">We have solutions</h3>
      <h1 class="h1 my-4">Something Asked Questions</h1>
      <p class="my-4 mx-auto text-lg">See what others often inquire about!</p>
    </div>
    <div class="grid">
      <div class="col col-12 col-md-6 offset-md-3">
        <h5 class="mt-4 mb-2">What is Bootstrap?</h5>
        <div class="text-muted mb-4">
          Bootstrap is a popular front-end framework that helps developers create beautiful, responsive websites quickly. It's filled with pre-styled components and tools to ease the web design process.
        </div>
        <hr class="my-5">
        <h5 class="mt-4 mb-2">Can Bootstrap be used with React?</h5>
        <div class="text-muted mb-4">
          Absolutely! Bootstrap can be easily integrated with React to enhance the UI with responsive design elements and ready-to-use components.
        </div>
        <hr class="my-5">
        <h5 class="mt-4 mb-2">What makes Bootstrap so popular?</h5>
        <div class="text-muted mb-4">
          Bootstrap's popularity is due to its easy-to-use grid system, reusable components, and extensive documentation. It helps developers quickly build well-structured and responsive websites.
        </div>
      </div>
    </div>
    <div class="text-center">
      <div class="text-muted small">
        Made with <a href="/" class="text-muted">Milligram</a> by <a href="#" class="text-muted">Milligram Team</a>.
      </div>
    </div>
  </section>
</div>




                     
                  

NEW TOPIC
New Developments in the Tech World
The latest trends and innovations in the tech industry are transforming businesses.
Image

12/30/2024 10:00 AM EDT

The tech industry has seen remarkable growth this year, with major advancements in artificial intelligence, cloud computing, and quantum technology.

Companies across the globe are investing heavily in these technologies, driving innovation and competition. Major players like Apple, Google, and Microsoft have unveiled new products aimed at revolutionizing how we work, communicate, and live.

AI applications are now widely used in healthcare, finance, and customer service. These developments promise to improve efficiency and productivity while also raising concerns about data privacy and job displacement.

Cloud services continue to expand, with many companies opting for hybrid and multi-cloud strategies to meet their needs. The shift towards remote work has accelerated the demand for scalable and secure cloud solutions.


                      
                      

                      <div class="container">
    <div class="column">
        <div class="text-center">
            <a href="#" class="font-weight-bold" style="color: #d9534f;">NEW TOPIC</a>
        </div>
        <div class="text-center" style="font-size: 2.5em; font-weight: bold;">
            New Developments in the Tech World
        </div>
        <div class="text-muted text-center" style="font-size: 1.1em; padding: 10px 0;">
            The latest trends and innovations in the tech industry are transforming businesses.
        </div>
        <div class="text-center">
            <img src="https://via.placeholder.com/1500x500" alt="Image" style="max-width: 100%; height: auto;">
        </div>
        <div class="text-muted text-center" style="padding: 10px 0; border-bottom: 1px solid #e1e1e1;">
            12/30/2024 10:00 AM EDT
        </div>
        <div class="text-left" style="padding-top: 20px;">
            <p>The tech industry has seen remarkable growth this year, with major advancements in artificial intelligence, cloud computing, and quantum technology.</p>
            <p>Companies across the globe are investing heavily in these technologies, driving innovation and competition. Major players like Apple, Google, and Microsoft have unveiled new products aimed at revolutionizing how we work, communicate, and live.</p>
            <p>AI applications are now widely used in healthcare, finance, and customer service. These developments promise to improve efficiency and productivity while also raising concerns about data privacy and job displacement.</p>
            <p>Cloud services continue to expand, with many companies opting for hybrid and multi-cloud strategies to meet their needs. The shift towards remote work has accelerated the demand for scalable and secure cloud solutions.</p>
        </div>
    </div>
</div>



                     
                  

What we do at our company:

  • 01.
    Investigation

    We analyze data and insights, and take the time to understand your business goals. We ask the right questions to learn about your objectives.

  • 02.
    Planning

    We develop strategies based on thorough research and strong planning to help you achieve success with data-driven decisions.

  • 03.
    Creative

    We design intuitive and user-friendly interfaces that look great and are easy to maintain, perfectly suited for your business needs.

  • 04.
    Building

    Our development process focuses on building solutions that not only work, but provide an excellent user experience and are simple to manage.

  • 05.
    Launching

    We make sure everything is ready to go, providing smooth deployments that ensure your product reaches the right audience effectively.

  • 06.
    Launching

    We make sure everything is ready to go, providing smooth deployments that ensure your product reaches the right audience effectively.


                      
                      

                      <div class="container">
    <div>
        <h1 class="text-center" style="font-size: 2.5em; font-weight: bold; color: #007bff; margin-bottom: 2em;">What we do at our company:</h1>
        <ul style="display: flex; flex-wrap: wrap; justify-content: center; gap: 1em;">
            <li style="display: flex; align-items: flex-start;">
                <div style="font-size: 2em; font-weight: lighter; color: #17a2b8; padding-right: 1em;">01.</div>
                <div>
                    <div style="font-size: 1.5em; font-weight: bold; color: #343a40;">Investigation</div>
                    <p style="max-width: 300px; padding-top: 0.5em; color: #6c757d;">We analyze data and insights, and take the time to understand your business goals. We ask the right questions to learn about your objectives.</p>
                </div>
            </li>
            <li style="display: flex; align-items: flex-start;">
                <div style="font-size: 2em; font-weight: lighter; color: #17a2b8; padding-right: 1em;">02.</div>
                <div>
                    <div style="font-size: 1.5em; font-weight: bold; color: #343a40;">Planning</div>
                    <p style="max-width: 300px; padding-top: 0.5em; color: #6c757d;">We develop strategies based on thorough research and strong planning to help you achieve success with data-driven decisions.</p>
                </div>
            </li>
            <li style="display: flex; align-items: flex-start;">
                <div style="font-size: 2em; font-weight: lighter; color: #17a2b8; padding-right: 1em;">03.</div>
                <div>
                    <div style="font-size: 1.5em; font-weight: bold; color: #343a40;">Creative</div>
                    <p style="max-width: 300px; padding-top: 0.5em; color: #6c757d;">We design intuitive and user-friendly interfaces that look great and are easy to maintain, perfectly suited for your business needs.</p>
                </div>
            </li>
            <li style="display: flex; align-items: flex-start;">
                <div style="font-size: 2em; font-weight: lighter; color: #17a2b8; padding-right: 1em;">04.</div>
                <div>
                    <div style="font-size: 1.5em; font-weight: bold; color: #343a40;">Building</div>
                    <p style="max-width: 300px; padding-top: 0.5em; color: #6c757d;">Our development process focuses on building solutions that not only work, but provide an excellent user experience and are simple to manage.</p>
                </div>
            </li>
            <li style="display: flex; align-items: flex-start;">
                <div style="font-size: 2em; font-weight: lighter; color: #17a2b8; padding-right: 1em;">05.</div>
                <div>
                    <div style="font-size: 1.5em; font-weight: bold; color: #343a40;">Launching</div>
                    <p style="max-width: 300px; padding-top: 0.5em; color: #6c757d;">We make sure everything is ready to go, providing smooth deployments that ensure your product reaches the right audience effectively.</p>
                </div>
            </li>
            <li style="display: flex; align-items: flex-start;">
                <div style="font-size: 2em; font-weight: lighter; color: #17a2b8; padding-right: 1em;">06.</div>
                <div>
                    <div style="font-size: 1.5em; font-weight: bold; color: #343a40;">Launching</div>
                    <p style="max-width: 300px; padding-top: 0.5em; color: #6c757d;">We make sure everything is ready to go, providing smooth deployments that ensure your product reaches the right audience effectively.</p>
                </div>
            </li>
        </ul>
    </div>
</div>


                     
                  

Pricing Plans

Choose the best plan for our service. Each plan has different features and benefits.

*Prices are monthly

Basic Plan

¥500/month

  • Basic Features
  • Support Included

Team Plan

¥1500/month

  • Team Features
  • 24/7 Support
  • Multiple Account Management

Pro Plan

¥3500/month

  • Advanced Features
  • Dedicated Support
  • Priority Access
  • Additional Benefits

                      
                      

                      <div class="container">
  <div class="row">
    <div class="column">
      <h1 class="h1">Pricing Plans</h1>
      <h3 class="h3">Choose the best plan for our service. Each plan has different features and benefits.</h3>
      <p class="small">*Prices are monthly</p>
    </div>
    <div class="column">
      <div class="row">
        <div class="column">
          <div class="card">
            <h2 class="h2">Basic Plan</h2>
            <h3 class="h3">¥500/month</h3>
            <ul>
              <li>Basic Features</li>
              <li>Support Included</li>
            </ul>
            <button class="button">Buy Now</button>
          </div>
        </div>
        <div class="column">
          <div class="card highlight">
            <h2 class="h2">Team Plan</h2>
            <h3 class="h3">¥1500/month</h3>
            <ul>
              <li>Team Features</li>
              <li>24/7 Support</li>
              <li>Multiple Account Management</li>
            </ul>
            <button class="button">Buy Now</button>
          </div>
        </div>
        <div class="column">
          <div class="card">
            <h2 class="h2">Pro Plan</h2>
            <h3 class="h3">¥3500/month</h3>
            <ul>
              <li>Advanced Features</li>
              <li>Dedicated Support</li>
              <li>Priority Access</li>
              <li>Additional Benefits</li>
            </ul>
            <button class="button">Buy Now</button>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>



                     
                  

Nobalish
Dashboard News Plans Contact
Join Now
Innovative Design

Explore a range of cutting-edge features designed to elevate your experience.

Solutions

Providing cutting-edge solutions to everyday challenges through technology and design.

Innovative Tech

Discover the amazing individuals behind our success, working together to make a difference.

Create Account

Fill in the details below to create your account.


                      
                      

                      <div class="container">
  <header class="header">
    <div class="row">
      <div class="column">
        <a href="/" class="brand">Nobalish</a>
      </div>
      <div class="column">
        <nav class="navigation">
          <a href="#">Dashboard</a>
          <a href="#">News</a>
          <a href="#">Plans</a>
          <a href="#">Contact</a>
        </nav>
      </div>
      <div class="column">
        <a href="#" class="button">Join Now</a>
        <button class="menu-button">
          <svg xmlns="http://www.w3.org/2000/svg" class="icon" viewBox="0 0 20 20" fill="currentColor">
            <path fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h6a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z" clip-rule="evenodd" />
          </svg>
          Menu
        </button>
      </div>
    </div>
  </header>

  <div class="content">
    <div class="row">
      <div class="column">
        <a href="#" class="link-item">
          <div class="icon-container">
            <svg xmlns="http://www.w3.org/2000/svg" class="icon" fill="none" viewBox="0 0 24 24" stroke="currentColor">
              <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 2v20m10-10H2" />
            </svg>
          </div>
          <div class="text">
            <div class="title">Innovative Design</div>
            <p class="description">Explore a range of cutting-edge features designed to elevate your experience.</p>
          </div>
        </a>
        <a href="#" class="link-item">
          <div class="icon-container">
            <svg xmlns="http://www.w3.org/2000/svg" class="icon" fill="none" viewBox="0 0 24 24" stroke="currentColor">
              <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z" />
            </svg>
          </div>
          <div class="text">
            <div class="title">Solutions</div>
            <p class="description">Providing cutting-edge solutions to everyday challenges through technology and design.</p>
          </div>
        </a>
        <a href="#" class="link-item">
          <div class="icon-container">
            <svg xmlns="http://www.w3.org/2000/svg" class="icon" fill="none" viewBox="0 0 24 24" stroke="currentColor">
              <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 15a4 4 0 004 4h9a5 5 0 10-.1-9.999 5.002 5.002 0 10-9.78 2.096A4.001 4.001 0 003 15z" />
            </svg>
          </div>
          <div class="text">
            <div class="title">Innovative Tech</div>
            <p class="description">Discover the amazing individuals behind our success, working together to make a difference.</p>
          </div>
        </a>
        <a href="#" class="link-item">
          <div class="icon-container">
            <svg xmlns="http://www.w3.org/2000/svg" class="icon" viewBox="0 0 20 20" fill="currentColor">
              <path d="M12 3V7H8V3H12zM3 7H7V3H3V7zM7 17H3V13H7V17zM13 7H17V3H13V7zM17 13H13V17H17V13z" />
            </svg>
          </div>
          <div class="text">
            <div class="title">Create Account</div>
            <p class="description">Fill in the details below to create your account.</p>
          </div>
        </a>
      </div>
    </div>
  </div>
</div>



                     
                  


                      

                      <div class="container" style="display: flex; justify-content: center; align-items: center; background: linear-gradient(135deg, #007bff, #6610f2); height: 100vh;">
    <div class="form" style="max-width: 500px; background-color: white; padding: 20px; border-radius: 5px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);">
        <div>
            <div class="field">
                <label for="name">Credit Card</label>
                <input type="text" id="name" placeholder="Full Name" />
            </div>
            <div class="field">
                <label for="cardNumber">Credit Card Number</label>
                <input type="text" id="cardNumber" placeholder="1234 5678 9012 3456" maxlength="19" />
            </div>
            <div class="row" style="display: flex; justify-content: space-between;">
                <div class="field" style="flex: 2;">
                    <label for="expiryDate">Expiration Date</label>
                    <input type="text" id="expiryDate" placeholder="MM/YY" maxlength="5" pattern="\d{2}/\d{2}" />
                </div>
                <div class="field" style="flex: 1;">
                    <label for="cvv">Security Code</label>
                    <input type="text" id="cvv" placeholder="123" maxlength="3" pattern="\d{3}" />
                </div>
            </div>
            <button class="button button-primary" style="width: 100%; margin-top: 20px;">Complete Purchase</button>
        </div>
    </div>
</div>


                     
                  

Create Account

Fill in the details below to create your account.

Already have an account? Log In

Created using Nobalish.

                      

                      <div class="container" style="display: flex; justify-content: center; align-items: center; min-height: 100vh;">
  <div style="max-width: 400px; background-color: white; padding: 20px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);">
    <h4 style="font-size: 1.5em; font-weight: bold; color: #007bff;">Create Account</h4>
    <p style="margin-top: 8px; font-size: 1.1em; color: #6c757d;">Fill in the details below to create your account.</p>
    <form style="margin-top: 16px;">
      <div style="margin-bottom: 16px;">
        <label for="username" style="font-weight: bold;">Username</label>
        <input type="text" id="username" placeholder="Choose a username" style="width: 100%; padding: 8px; border-radius: 4px; border: 1px solid #ccc;" />
      </div>
      <div style="margin-bottom: 16px;">
        <label for="useremail" style="font-weight: bold;">Email Address</label>
        <input type="email" id="useremail" placeholder="Enter your email address" style="width: 100%; padding: 8px; border-radius: 4px; border: 1px solid #ccc;" />
      </div>
      <div style="margin-bottom: 16px;">
        <label for="userpassword" style="font-weight: bold;">Password</label>
        <input type="password" id="userpassword" placeholder="Set your password" style="width: 100%; padding: 8px; border-radius: 4px; border: 1px solid #ccc;" />
      </div>
      <div style="margin-bottom: 24px;">
        <label class="checkbox" style="font-size: 0.9em;">
          <input type="checkbox" id="acceptTerms" /> I agree to the <a href="#" style="color: #007bff;">Privacy Policy</a> and <a href="#" style="color: #007bff;">Terms of Service</a>.
        </label>
      </div>
      <button type="submit" style="width: 100%; padding: 10px; background-color: #28a745; color: white; border: none; border-radius: 4px; font-weight: bold;">Sign Up</button>
      <p style="margin-top: 16px; text-align: center; font-size: 0.9em; color: #6c757d;">
        Already have an account? <a href="#" style="color: #007bff;">Log In</a>
      </p>
    </form>
    <div style="padding-top: 24px; text-align: center; font-size: 0.8em; color: #6c757d;">
      Created using <a href="#" style="color: #6c757d;" target="_blank">Nobalish</a>.
    </div>
  </div>
</div>



                     
                  


                      

                      <div class="container">
  <div class="row">
    <div class="column">
      <form action="">
        <div class="field">
          <label for="number" class="label">Contact Number</label>
          <input type="number" id="number" name="number" placeholder="Enter your number" class="input">
        </div>
        <div class="field">
          <label for="range" class="label">Experience Level</label>
          <input type="range" id="range" name="range" class="range">
        </div>
        <div class="field">
          <label for="file" class="label">Upload File</label>
          <input type="file" id="file" name="file" class="input">
        </div>
        <div class="field">
          <label for="date" class="label">Event Date</label>
          <input type="date" id="date" name="date" class="input">
        </div>
        <div class="field">
          <label for="month" class="label">Start Month</label>
          <input type="month" id="month" name="month" class="input">
        </div>
        <div class="field">
          <label for="time" class="label">Preferred Time</label>
          <input type="time" id="time" name="time" class="input">
        </div>
        <div class="field">
          <label for="password" class="label">Password</label>
          <input type="password" id="password" name="password" placeholder="Create a password" class="input">
        </div>
        <div class="field text-right">
          <button type="submit" class="button">Submit</button>
        </div>
      </form>
    </div>
  </div>
</div>


                     
                  

Let's Connect

Welcome to our contact page. Feel free to share your thoughts or ask questions, and we'll get back to you as soon as possible.

*Required fields

By submitting, you agree to our Terms and Conditions.


                      
                      

                      <div class="container">
  <div class="row">
    <div class="column">
      <h2 class="text-center text-2xl font-bold">Let's Connect</h2>
      <p class="text-center text-muted">Welcome to our contact page. Feel free to share your thoughts or ask questions, and we'll get back to you as soon as possible.</p>

      <form action="" method="POST">
        <div class="field">
          <label for="first-name" class="label">Name of the Explorer*</label>
          <input type="text" id="first-name" name="first-name" class="input" placeholder="Your full name" required>
        </div>
        <div class="field">
          <label for="last-name" class="label">Family Name*</label>
          <input type="text" id="last-name" name="last-name" class="input" placeholder="Your surname" required>
        </div>
        <div class="field">
          <label for="company" class="label">Organization Name</label>
          <input type="text" id="company" name="company" class="input" placeholder="Enter your organization">
        </div>
        <div class="field">
          <label for="email" class="label">Your Email Address*</label>
          <input type="email" id="email" name="email" class="input" placeholder="email@example.com" required>
        </div>
        <div class="field">
          <label for="subject" class="label">Topic of Discussion*</label>
          <input type="text" id="subject" name="subject" class="input" placeholder="Subject of your message" required>
        </div>
        <div class="field">
          <label for="message" class="label">Your Thoughts*</label>
          <textarea id="message" name="message" class="textarea" rows="6" placeholder="Write your message here" required></textarea>
        </div>
        <div class="field">
          <button type="submit" class="button">Send Your Message</button>
          <span class="text-sm text-muted">*Required fields</span>
        </div>
      </form>
      <p class="text-xs text-muted text-center">By submitting, you agree to our <a href="#" class="text-decoration-underline">Terms and Conditions</a>.</p>
    </div>
  </div>
</div>



                     
                  


                      
                      

                      <form>
  <div class="row">
    <div class="column">
      <label for="product_name">Product Name</label>
      <input type="text" id="product_name" placeholder="Gadget X100" required>
    </div>
    <div class="column">
      <label for="brand_name">Brand Name</label>
      <input type="text" id="brand_name" placeholder="TechNova" required>
    </div>
    <div class="column">
      <label for="price">Price</label>
      <input type="text" id="price" placeholder="$499.99" required>
    </div>
    <div class="column">
      <label for="availability">Availability</label>
      <input type="text" id="availability" placeholder="In Stock" required>
    </div>
    <div class="column">
      <label for="category">Category</label>
      <input type="text" id="category" placeholder="Electronics" required>
    </div>
    <div class="column">
      <label for="rating">Customer Rating</label>
      <input type="number" id="rating" placeholder="4.5" required>
    </div>
  </div>
  
  <div class="column">
    <label for="manufacturer_email">Manufacturer Email</label>
    <input type="email" id="manufacturer_email" placeholder="support@technova.com" required>
  </div>
  
  <div class="column">
    <label for="warranty_period">Warranty Period</label>
    <input type="text" id="warranty_period" placeholder="2 years" required>
  </div>
  
  <div class="column">
    <label for="accept_terms">
      <input id="accept_terms" type="checkbox" required>
      I agree to the <a href="#" class="link-primary">terms and conditions</a>.
    </label>
  </div>
  
  <button type="submit" class="button">Add Product</button>
</form>



                     
                  

Contact Information

Location Address 123 Tech Street, Silicon Valley, CA, USA

Phone Number +1 (800) 123 4567

Email Address contact@company.com

Web Address www.companywebsite.com

Contact Us

The Connections section allows you to manage your connections and communication with others.


                      
                      
                      <div class="container" style="padding: 24px;">
  <div class="row">
    <div class="column" style="max-width: 700px; margin: 0 auto;">
      <div style="display: flex; flex-wrap: wrap; background-color: #ffffff; padding: 24px; border-radius: 5px;">
        
        <div style="background-color: #007bff; color: #ffffff; padding: 24px; flex: 1 1 200px; border-radius: 5px 0 0 5px;">
          <h2 style="font-weight: bold; margin-bottom: 16px;">Contact Information</h2>
          <p style="font-weight: bold; margin-bottom: 12px;">
            Location Address
            <span style="display: block; color: #f4f4f4;">123 Tech Street, Silicon Valley, CA, USA</span>
          </p>
          <p style="font-weight: bold; margin-bottom: 12px;">
            Phone Number
            <span style="display: block; color: #f4f4f4;">+1 (800) 123 4567</span>
          </p>
          <p style="font-weight: bold; margin-bottom: 12px;">
            Email Address
            <span style="display: block; color: #f4f4f4;">contact@company.com</span>
          </p>
          <p style="font-weight: bold; margin-bottom: 12px;">
            Web Address
            <span style="display: block; color: #f4f4f4;">www.companywebsite.com</span>
          </p>
        </div>
        
        <div style="background-color: #f4f4f4; padding: 24px; flex: 2 1 400px; border-radius: 0 5px 5px 0;">
          <h2 style="font-weight: bold; margin-bottom: 16px; color: #007bff;">Contact Us</h2>
          <form>
            <div style="display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px;">
              <div class="column" style="flex: 1 1 45%;">
                <input type="text" style="width: 100%; padding: 12px; border-radius: 20px;" placeholder="Full Name" />
              </div>
              <div class="column" style="flex: 1 1 45%;">
                <input type="text" style="width: 100%; padding: 12px; border-radius: 20px;" placeholder="Your Email" />
              </div>
            </div>
            <div style="display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px;">
              <div class="column" style="flex: 1 1 45%;">
                <input type="email" style="width: 100%; padding: 12px; border-radius: 20px;" placeholder="Your Phone Number" />
              </div>
              <div class="column" style="flex: 1 1 45%;">
                <input type="text" style="width: 100%; padding: 12px; border-radius: 20px;" placeholder="Message Subject" />
              </div>
            </div>
            <div style="margin-bottom: 24px;">
              <textarea style="width: 100%; padding: 12px; border-radius: 8px;" placeholder="Your Inquiry" rows="6"></textarea>
            </div>
            <div style="text-align: center;">
              <button type="submit" style="background-color: #007bff; color: white; padding: 12px 24px; border-radius: 20px; font-size: 16px; cursor: pointer;">
                Submit
              </button>
            </div>
          </form>
        </div>
        
      </div>
    </div>
  </div>
</div>

<p style="color: #6c757d; text-align: center;">The Connections section allows you to manage your connections and communication with others.</p>




                     
                  

Get Started with Amazing Projects

Join thousands of businesses growing with our powerful solutions.

Services
  • Overview
  • Support
  • Features
  • Pricing
  • Blog
  • Updates
About Us
  • Our Team
  • Careers
  • News
  • Partnerships
  • Contact
Resources
  • FAQ
  • Documentation
  • Support Center
  • Community
Legal
  • Privacy Policy
  • Terms of Use
  • Cookies Policy
Social
  • Twitter
  • Facebook
  • LinkedIn
  • Instagram
Quick Links
  • Blog
  • Events
  • Help Center
  • Newsletter

© 2023 Your Company. All Rights Reserved.

                      
                      

                      <div class="container">
  <div class="section">
    <div class="row">
      <div class="column column-12">
        <h2 class="font-weight-bold">Get Started with Amazing Projects</h2>
        <p>Join thousands of businesses growing with our powerful solutions.</p>
      </div>
    </div>
    <div class="row">
      <div class="column column-2">
        <h5 class="font-weight-bold">Services</h5>
        <ul>
          <li><a href="#">Overview</a></li>
          <li><a href="#">Support</a></li>
          <li><a href="#">Features</a></li>
          <li><a href="#">Pricing</a></li>
          <li><a href="#">Blog</a></li>
          <li><a href="#">Updates</a></li>
        </ul>
      </div>
      <div class="column column-2">
        <h5 class="font-weight-bold">About Us</h5>
        <ul>
          <li><a href="#">Our Team</a></li>
          <li><a href="#">Careers</a></li>
          <li><a href="#">News</a></li>
          <li><a href="#">Partnerships</a></li>
          <li><a href="#">Contact</a></li>
        </ul>
      </div>
      <div class="column column-2">
        <h5 class="font-weight-bold">Resources</h5>
        <ul>
          <li><a href="#">FAQ</a></li>
          <li><a href="#">Documentation</a></li>
          <li><a href="#">Support Center</a></li>
          <li><a href="#">Community</a></li>
        </ul>
      </div>
      <div class="column column-2">
        <h5 class="font-weight-bold">Legal</h5>
        <ul>
          <li><a href="#">Privacy Policy</a></li>
          <li><a href="#">Terms of Use</a></li>
          <li><a href="#">Cookies Policy</a></li>
        </ul>
      </div>
      <div class="column column-2">
        <h5 class="font-weight-bold">Social</h5>
        <ul>
          <li><a href="#">Twitter</a></li>
          <li><a href="#">Facebook</a></li>
          <li><a href="#">LinkedIn</a></li>
          <li><a href="#">Instagram</a></li>
        </ul>
      </div>
      <div class="column column-2">
        <h5 class="font-weight-bold">Quick Links</h5>
        <ul>
          <li><a href="#">Blog</a></li>
          <li><a href="#">Events</a></li>
          <li><a href="#">Help Center</a></li>
          <li><a href="#">Newsletter</a></li>
        </ul>
      </div>
    </div>
    <hr>
    <div class="row">
      <div class="column">
        <small class="text-muted">© 2023 Your Company. All Rights Reserved.</small>
      </div>
    </div>
  </div>
</div>


                    
                     
                  

My Website
  • Home
  • Terms of Service
  • Support
  • Feedback

© 2022 My Website™. All Rights Reserved.

This footer component is part of a larger, open-source library of Bootstrap components. Learn more by going to the official My Website Documentation.


                      
                      

                      <div class="container">
  <div class="bg-light p-4 rounded">
    <div class="row">
      <div class="column column-8">
        <a href="#" target="_blank">
          <span class="h4">My Website</span>
        </a>
      </div>
      <div class="column column-4">
        <ul class="list-inline">
          <li class="list-inline-item">
            <a href="#" class="text-muted">Home</a>
          </li>
          <li class="list-inline-item">
            <a href="#" class="text-muted">Terms of Service</a>
          </li>
          <li class="list-inline-item">
            <a href="#" class="text-muted">Support</a>
          </li>
          <li class="list-inline-item">
            <a href="#" class="text-muted">Feedback</a>
          </li>
        </ul>
      </div>
    </div>
    <hr />
    <span class="block text-center text-muted">
      © 2022 <a href="#" target="_blank" class="text-muted">My Website™</a>. All Rights Reserved.
    </span>
  </div>
  <p class="mt-4">
    This footer component is part of a larger, open-source library of Bootstrap components. Learn more by going to the official 
    <a class="text-primary" href="#" target="_blank">My Website Documentation</a>.
  </p>
</div>



                     
                  

Company Partners Careers Newsroom Updates
© 2021 - Present CompanyX. All rights reserved.

                      
                      

                      <div class="container">
  <div class="padded">
    <div class="row">
      <nav class="col">
        <a href="#" class="link muted">Company</a>
        <a href="#" class="link muted">Partners</a>
        <a href="#" class="link muted">Careers</a>
        <a href="#" class="link muted">Newsroom</a>
        <a href="#" class="link muted">Updates</a>
      </nav>
    </div>
    <div class="row">
      <a href="#" target="_blank" class="icon-link muted">
        <!-- SVG for social icon 1 -->
        <svg class="icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
          <path d="M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 20C7.03 20 4 16.97 4 12C4 7.03 7.03 4 12 4C16.97 4 20 7.03 20 12C20 16.97 16.97 20 12 20ZM12 5C10.9 5 10 5.9 10 7C10 8.1 10.9 9 12 9C13.1 9 14 8.1 14 7C14 5.9 13.1 5 12 5ZM12 15C10.9 15 10 15.9 10 17C10 18.1 10.9 19 12 19C13.1 19 14 18.1 14 17C14 15.9 13.1 15 12 15Z"/>
        </svg>
      </a>
      <a href="#" target="_blank" class="icon-link muted">
        <!-- SVG for social icon 2 -->
        <svg class="icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
          <path d="M20 2H4C2.89 2 2 2.89 2 4V20C2 21.1 2.89 22 4 22H20C21.1 22 22 21.1 22 20V4C22 2.89 21.1 2 20 2ZM10 18V6H14V18H10ZM12 5C13.1 5 14 5.9 14 7C14 8.1 13.1 9 12 9C10.9 9 10 8.1 10 7C10 5.9 10.9 5 12 5ZM16 18H8V6H16V18Z"/>
        </svg>
      </a>
      <a href="#" target="_blank" class="icon-link muted">
        <!-- SVG for social icon 3 -->
        <svg class="icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
          <path d="M21 7H17.6L14 2H10L6.4 7H3C2.45 7 2 7.45 2 8V20C2 20.55 2.45 21 3 21H21C21.55 21 22 20.55 22 20V8C22 7.45 21.55 7 21 7ZM10 4H14L16.6 7H7.4L10 4ZM20 18H4V9H20V18Z"/>
        </svg>
      </a>
      <a href="#" target="_blank" class="icon-link muted">
        <!-- SVG for social icon 4 -->
        <svg class="icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
          <path d="M12 0C5.373 0 0 5.373 0 12C0 18.627 5.373 24 12 24C18.627 24 24 18.627 24 12C24 5.373 18.627 0 12 0ZM12 20C7.03 20 4 16.97 4 12C4 7.03 7.03 4 12 4C16.97 4 20 7.03 20 12C20 16.97 16.97 20 12 20ZM12 5C10.9 5 10 5.9 10 7C10 8.1 10.9 9 12 9C13.1 9 14 8.1 14 7C14 5.9 13.1 5 12 5ZM12 15C10.9 15 10 15.9 10 17C10 18.1 10.9 19 12 19C13.1 19 14 18.1 14 17C14 15.9 13.1 15 12 15Z"/>
        </svg>
      </a>
    </div>
    <div class="text-center muted">
      <small>© 2021 - Present CompanyX. All rights reserved.</small>
    </div>
  </div>
</div>



                     
                  


                      
                      

                      <div class="container">
  <div class="grid">
    <div class="col">
      <button class="button primary expanded">Primary Button</button>
    </div>
    <div class="col">
      <button class="button outline expanded">Outline Button</button>
    </div>
    <div class="col">
      <button class="button success expanded">
        <i class="bi bi-check-circle"></i> Success Button
      </button>
    </div>
    <div class="col">
      <button class="button warning expanded" title="This is a tooltip!">
        Warning Button
      </button>
    </div>
    <div class="col">
      <button class="button alert expanded">
        Delete <span class="badge">5</span>
      </button>
    </div>
    <div class="col">
      <button class="button info expanded">Info Button</button>
    </div>
    <div class="col">
      <button class="button dark expanded">Dark Button</button>
    </div>
    <div class="col">
      <button class="button light expanded">Light Button</button>
    </div>
  </div>
</div>




                    
                  


                      
                      

                      <div class="container">
  <div class="row">
    <div class="column">
      <button class="button" style="background: linear-gradient(to right, #ff7e5f,rgb(0, 0, 0)); font-size: 16px; font-weight: 600; text-transform: uppercase; padding: 15px 30px;" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">Gradient Button</button>
    </div>
    <div class="column">
      <button class="button" style="background: linear-gradient(to right,rgb(95, 255, 124),rgb(0, 0, 0)); font-size: 16px; font-weight: 600; text-transform: uppercase; padding: 15px 30px;" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">Gradient Button</button>
    </div>
    <div class="column">
      <button class="button" style="background: linear-gradient(to right,rgb(176, 223, 192),rgb(0, 0, 0)); font-size: 16px; font-weight: 600; text-transform: uppercase; padding: 15px 30px;" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">Gradient Button</button>
    </div>
    <div class="column">
      <button class="button" style="background: linear-gradient(to right,rgb(182, 180, 184),rgb(0, 0, 0)); font-size: 16px; font-weight: 600; text-transform: uppercase; padding: 15px 30px;" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">Gradient Button</button>
    </div>
    <div class="column">
      <button class="button" style="background: linear-gradient(to right,rgb(100, 67, 191),rgb(0, 0, 0)); font-size: 16px; font-weight: 600; text-transform: uppercase; padding: 15px 30px;" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">Gradient Button</button>
    </div>
    <div class="column">
      <button class="button" style="background: linear-gradient(to right,rgb(183, 0, 255),rgb(0, 0, 0)); font-size: 16px; font-weight: 600; text-transform: uppercase; padding: 15px 30px;" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">Gradient Button</button>
    </div>
    <div class="column">
      <button class="button" style="background: linear-gradient(to right,rgb(255, 27, 221),rgb(0, 0, 0)); font-size: 16px; font-weight: 600; text-transform: uppercase; padding: 15px 30px;" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">Gradient Button</button>
    </div>
    <div class="column">
      <button class="button" style="background: linear-gradient(to right,rgb(219, 253, 23),rgb(6, 6, 6)); font-size: 16px; font-weight: 600; text-transform: uppercase; padding: 15px 30px;" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">Gradient Button</button>
    </div>
  </div>
</div>



                    
                  


                      
                      

                      <div class="container">
  <div class="row">
    <div class="column">
      <button class="button" style="background-color: #dc3545; font-size: 16px; font-weight: 600; text-transform: uppercase; border-radius: 30px; padding: 15px 30px;" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">Button</button>
    </div>
    <div class="column">
      <button class="button" style="background-color:rgb(5, 51, 255); font-size: 16px; font-weight: 600; text-transform: uppercase; border-radius: 30px; padding: 15px 30px;" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">Button</button>
    </div>
    <div class="column">
      <button class="button" style="background-color:rgb(21, 255, 9); font-size: 16px; font-weight: 600; text-transform: uppercase; border-radius: 30px; padding: 15px 30px;" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">Button</button>
    </div>
    <div class="column">
      <button class="button" style="background-color:rgb(153, 155, 28); font-size: 16px; font-weight: 600; text-transform: uppercase; border-radius: 30px; padding: 15px 30px;" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">Button</button>
    </div>
    <div class="column">
      <button class="button" style="background-color:rgb(0, 247, 255); font-size: 16px; font-weight: 600; text-transform: uppercase; border-radius: 30px; padding: 15px 30px;" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">Button</button>
    </div>
    <div class="column">
      <button class="button" style="background-color:rgb(95, 9, 255); font-size: 16px; font-weight: 600; text-transform: uppercase; border-radius: 30px; padding: 15px 30px;" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">Button</button>
    </div>
    <div class="column">
      <button class="button" style="background-color:rgb(255, 0, 217); font-size: 16px; font-weight: 600; text-transform: uppercase; border-radius: 30px; padding: 15px 30px;" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">Button</button>
    </div>
    <div class="column">
      <button class="button" style="background-color:rgb(255, 145, 0); font-size: 16px; font-weight: 600; text-transform: uppercase; border-radius: 30px; padding: 15px 30px;" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">Button</button>
    </div>
  </div>
</div>



                     
                  


                      
                      

                      <!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Milligram Buttons</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.3.0/milligram.min.css">
  <style>
    /* Custom styles for rounded buttons */
    .btn-rounded {
      padding: 20px 40px;
      font-weight: 600;
      text-transform: uppercase;
      border-radius: 50%;
      display: inline-block;
      text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    /* Hover effect for the buttons */
    .btn-rounded:hover {
      transform: scale(1.1);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
  </style>
</head>
<body>

  <div class="container" style="padding: 20px 0;">
    <div class="row">
      <div class="column">
        <button class="button btn-rounded" style="background-color: #dc3545; color: white;">Red</button>
      </div>
      <div class="column">
        <button class="button btn-rounded" style="background-color: #28a745; color: white;">Green</button>
      </div>
      <div class="column">
        <button class="button btn-rounded" style="background-color: #007bff; color: white;">Blue</button>
      </div>
      <div class="column">
        <button class="button btn-rounded" style="background-color: #ffc107; color: white;">Yellow</button>
      </div>
      <div class="column">
        <button class="button btn-rounded" style="background-color: #f8f9fa; color: black;">White</button>
      </div>
      <div class="column">
        <button class="button btn-rounded" style="background-color: #6c757d; color: white;">Gray</button>
      </div>
      <div class="column">
        <button class="button btn-rounded" style="background-color: #17a2b8; color: white;">Teal</button>
      </div>
      <div class="column">
        <button class="button btn-rounded" style="background-color: #343a40; color: white;">Black</button>
      </div>
    </div>
  </div>

</body>
</html>



                     
                  

>

                      
                      

                      <!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Milligram Buttons</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.3.0/milligram.min.css">
  <style>
    /* Custom styles for rounded outline buttons */
    .btn-rounded {
      padding: 20px 40px;
      font-weight: 600;
      text-transform: uppercase;
      border-radius: 50%;
      display: inline-block;
      text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
      border: 2px solid;
    }

    /* Custom colors for outline buttons */
    .btn-outline-danger { border-color: #dc3545; color: #dc3545; }
    .btn-outline-success { border-color: #28a745; color: #28a745; }
    .btn-outline-primary { border-color: #007bff; color: #007bff; }
    .btn-outline-warning { border-color: #ffc107; color: #ffc107; }
    .btn-outline-secondary { border-color: #6c757d; color: #6c757d; }
    .btn-outline-info { border-color: #17a2b8; color: #17a2b8; }
    .btn-outline-dark { border-color: #343a40; color: #343a40; }

    /* Hover effect for the buttons */
    .btn-rounded:hover {
      transform: scale(1.1);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
  </style>
</head>
<body>

  <div class="container" style="padding: 20px 0;">
    <div class="row">
      <div class="column">
        <button class="button btn-rounded btn-outline-danger">Red</button>
      </div>
      <div class="column">
        <button class="button btn-rounded btn-outline-success">Green</button>
      </div>
      <div class="column">
        <button class="button btn-rounded btn-outline-primary">Blue</button>
      </div>
      <div class="column">
        <button class="button btn-rounded btn-outline-warning">Yellow</button>
      </div>
      <div class="column">
        <button class="button btn-rounded btn-outline-secondary">Gray</button>
      </div>
      <div class="column">
        <button class="button btn-rounded btn-outline-info">Teal</button>
      </div>
      <div class="column">
        <button class="button btn-rounded btn-outline-dark">Black</button>
      </div>
    </div>
  </div>

</body>
</html>



                     
                  


                      
                      

                      <!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Milligram Example</title>
  <link rel="stylesheet" href="https://unpkg.com/milligram/dist/milligram.min.css">
  <style>
    .icon-btn {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 12px;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      font-size: 16px;
    }

    .icon-btn svg {
      margin-right: 8px;
    }
  </style>
</head>
<body>
  <div class="container" style="margin-top: 30px;">
    <div class="row">
      <div class="column">
        <button class="button primary icon-btn" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">
          <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-house-door" viewBox="0 0 16 16">
            <path d="M8 3.293l6 6V13h-4v3H6v-3H2V9.293l6-6zM0 9.293l7-7 7 7V14h-3v-4h-8v4H0V9.293z"/>
          </svg>
          Home
        </button>
      </div>
      <div class="column">
        <button class="button secondary icon-btn" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">
          <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-search" viewBox="0 0 16 16">
            <path d="M11.742 10.344a6 6 0 1 0-1.398 1.398l4.672 4.671a1 1 0 1 0 1.414-1.414l-4.672-4.671zM12 6a5.978 5.978 0 0 1-1.162 3.626l-4.326-4.327A5.978 5.978 0 0 1 12 6z"/>
          </svg>
          Search
        </button>
      </div>
      <div class="column">
        <button class="button alert icon-btn" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">
          <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-plus-circle" viewBox="0 0 16 16">
            <path d="M8 3a5 5 0 1 0 5 5 5 5 0 0 0-5-5zM8 0a8 8 0 1 1-8 8 8 8 0 0 1 8-8zm0 14a6 6 0 1 0-6-6 6 6 0 0 0 6 6z"/>
          </svg>
          Add
        </button>
      </div>
      <div class="column">
        <button class="button button-outline icon-btn" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">
          <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-gear" viewBox="0 0 16 16">
            <path d="M8 3.5a4.5 4.5 0 1 0 4.5 4.5A4.5 4.5 0 0 0 8 3.5zM8 1a5 5 0 1 1-5 5 5 5 0 0 1 5-5z"/>
          </svg>
          Settings
        </button>
      </div>
      <div class="column">
        <button class="button primary icon-btn" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">
          <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-cart" viewBox="0 0 16 16">
            <path d="M0 1a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v1h9V1a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v1h1a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h1V1zM1 2h1v1H1zM14 2h1v1h-1zM0 12h16V4H0z"/>
          </svg>
          Cart
        </button>
      </div>
      <div class="column">
        <button class="button secondary icon-btn" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">
          <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-heart" viewBox="0 0 16 16">
            <path d="M8 13s3-2.5 6-5c2-2 2-4 0-6-2-2-4-2-6 0-2-2-4-2-6 0-2 2-2 4 0 6 3 2.5 6 5 6 5z"/>
          </svg>
          Favorite
        </button>
      </div>
      <div class="column">
        <button class="button secondary icon-btn" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">
          <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-chat" viewBox="0 0 16 16">
            <path d="M2 4a2 2 0 0 0 2-2h8a2 2 0 0 0 2 2v8a2 2 0 0 0-2 2H4a2 2 0 0 0-2-2V4zm3 0v8h8V4H5z"/>
          </svg>
          Messages
        </button>
      </div>
      <div class="column">
        <button class="button button-outline icon-btn" onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 4px 20px rgba(0, 0, 0, 0.1)';" onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='none';">
          <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-person" viewBox="0 0 16 16">
            <path d="M8 1a4 4 0 1 1-4 4 4 4 0 0 1 4-4zm0 8a6 6 0 0 0-6 6v1h12v-1a6 6 0 0 0-6-6z"/>
          </svg>
          Profile
        </button>
      </div>
    </div>
  </div>
</body>
</html>



                    
                  

Sun

1

Mon

2

Tue

3

Wed

4

Thu

5

Fri

6

Sat

7

Sun

1

Mon

2

Tue

3

Wed

4

Thu

5

Fri

6

Sat

7


                      
                      
                      <div class="container">
  <div class="row">
    <div class="column center">
      <div class="day-box current-day">
        <p class="small">Sun</p>
        <p class="bold">1</p>
      </div>
      <div class="day-box">
        <p class="small">Mon</p>
        <p class="bold">2</p>
      </div>
      <div class="day-box">
        <p class="small">Tue</p>
        <p class="bold">3</p>
      </div>
      <div class="day-box current-day">
        <p class="small">Wed</p>
        <p class="bold">4</p>
      </div>
      <div class="day-box">
        <p class="small">Thu</p>
        <p class="bold">5</p>
      </div>
      <div class="day-box">
        <p class="small">Fri</p>
        <p class="bold">6</p>
      </div>
      <div class="day-box">
        <p class="small">Sat</p>
        <p class="bold">7</p>
      </div>
    </div>
  </div>
  <div class="row">
    <div class="column center">
      <div class="day-box">
        <p class="small">Sun</p>
        <p class="bold">1</p>
      </div>
      <div class="day-box">
        <p class="small">Mon</p>
        <p class="bold">2</p>
      </div>
      <div class="day-box">
        <p class="small">Tue</p>
        <p class="bold">3</p>
      </div>
      <div class="day-box current-day">
        <p class="small">Wed</p>
        <p class="bold">4</p>
      </div>
      <div class="day-box">
        <p class="small">Thu</p>
        <p class="bold">5</p>
      </div>
      <div class="day-box">
        <p class="small">Fri</p>
        <p class="bold">6</p>
      </div>
      <div class="day-box">
        <p class="small">Sat</p>
        <p class="bold">7</p>
      </div>
    </div>
  </div>
</div>

<!-- Milligram CSS classes -->
<style>
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .row {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .column {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .day-box {
    text-align: center;
    padding: 15px;
    border-radius: 50%;
    background-color: #333;
    color: white;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .day-box:hover {
    background-color: #555;
  }
  .current-day {
    background-color: #007bff;
  }
  .small {
    font-size: 12px;
  }
  .bold {
    font-weight: bold;
  }
</style>




                    
                  

Holiday Sale - Up to 40% off on home decor! Shop Now

Holiday Sale - Up to 40% off on home decor! Shop Now

Holiday Sale - Up to 40% off on home decor! Shop Now

Holiday Sale - Up to 40% off on home decor! Shop Now


                      
                      
                      <div class="container">
  <div class="row">
    <div class="column center">
      <div class="alert alert-primary p-4 rounded">
        <div>
          <p class="bold text-warning">
            Holiday Sale
            <span class="text-light"> - Up to 40% off on home decor!</span>
            <span class="text-sm font-weight-bold text-warning">
              Shop Now <svg class="icon ml-1" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></svg>
            </span>
          </p>
        </div>
        <button class="close" type="button"></button>
      </div>
    </div>
  </div>

  <div class="row">
    <div class="column center">
      <div class="alert alert-danger p-4 rounded">
        <div>
          <p class="bold text-warning">
            Holiday Sale
            <span class="text-light"> - Up to 40% off on home decor!</span>
            <span class="text-sm font-weight-bold text-warning">
              Shop Now <svg class="icon ml-1" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></svg>
            </span>
          </p>
        </div>
        <button class="close" type="button"></button>
      </div>
    </div>
  </div>

  <div class="row">
    <div class="column center">
      <div class="alert alert-success p-4 rounded">
        <div>
          <p class="bold text-warning">
            Holiday Sale
            <span class="text-light"> - Up to 40% off on home decor!</span>
            <span class="text-sm font-weight-bold text-warning">
              Shop Now <svg class="icon ml-1" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></svg>
            </span>
          </p>
        </div>
        <button class="close" type="button"></button>
      </div>
    </div>
  </div>

  <div class="row">
    <div class="column center">
      <div class="alert alert-info p-4 rounded">
        <div>
          <p class="bold text-warning">
            Holiday Sale
            <span class="text-light"> - Up to 40% off on home decor!</span>
            <span class="text-sm font-weight-bold text-warning">
              Shop Now <svg class="icon ml-1" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></svg>
            </span>
          </p>
        </div>
        <button class="close" type="button"></button>
      </div>
    </div>
  </div>
</div>

<!-- Milligram CSS classes -->
<style>
  .container {
    max-width: 960px;
    margin: 0 auto;
  }
  .row {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .column {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    width: 100%;
  }
  .alert {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 16px;
    width: 100%;
  }
  .alert-primary {
    background-color: #007bff;
    color: white;
  }
  .alert-danger {
    background-color: #dc3545;
    color: white;
  }
  .alert-success {
    background-color: #28a745;
    color: white;
  }
  .alert-info {
    background-color: #17a2b8;
    color: white;
  }
  .close {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  .bold {
    font-weight: bold;
  }
  .icon {
    width: 16px;
    height: 16px;
  }
</style>




                     
                  

Sample Heading One

Sample Heading Two

Sample Heading Three

Sample Heading Four

Sample Heading Five

Sample Heading Six


                      
                      

                      <div class="container">
  <div class="content">
    <h1 class="heading-primary">Sample Heading One</h1>
    <h2 class="heading-secondary">Sample Heading Two</h2>
    <h3 class="heading-success">Sample Heading Three</h3>
    <h4 class="heading-warning">Sample Heading Four</h4>
    <h5 class="heading-info">Sample Heading Five</h5>
    <p class="paragraph">Sample Heading Six</p>
  </div>
</div>

<!-- Milligram CSS classes -->
<style>
  .container {
    max-width: 960px;
    margin: 0 auto;
  }
  .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
  }
  .heading-primary {
    font-weight: bold;
    font-size: 3rem;
    color: #007bff; /* Primary color */
  }
  .heading-secondary {
    font-weight: bold;
    font-size: 2.5rem;
    color: #6c757d; /* Secondary color */
  }
  .heading-success {
    font-weight: bold;
    font-size: 2rem;
    color: #28a745; /* Success color */
  }
  .heading-warning {
    font-weight: bold;
    font-size: 1.75rem;
    color: #ffc107; /* Warning color */
  }
  .heading-info {
    font-weight: bold;
    font-size: 1.5rem;
    color: #17a2b8; /* Info color */
  }
  .paragraph {
    font-weight: 600;
    font-size: 1rem;
    color: #6c757d; /* Muted color */
  }
</style>



                     
                  

  • « Previous
  • 1
  • 2
  • 3
  • 4
  • 5
  • Next »

                      
                      

                      <nav aria-label="Page navigation example">
  <ul class="pagination">
    <li class="pagination-item">
      <a href="#" class="pagination-link" aria-label="Previous">
        <span aria-hidden="true">&laquo; Previous</span>
      </a>
    </li>
    <li class="pagination-item">
      <a href="#" class="pagination-link">1</a>
    </li>
    <li class="pagination-item">
      <a href="#" class="pagination-link">2</a>
    </li>
    <li class="pagination-item active" aria-current="page">
      <a href="#" class="pagination-link">3</a>
    </li>
    <li class="pagination-item">
      <a href="#" class="pagination-link">4</a>
    </li>
    <li class="pagination-item">
      <a href="#" class="pagination-link">5</a>
    </li>
    <li class="pagination-item">
      <a href="#" class="pagination-link" aria-label="Next">
        <span aria-hidden="true">Next &raquo;</span>
      </a>
    </li>
  </ul>
</nav>

<!-- Milligram CSS classes -->
<style>
  .pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .pagination-item {
    margin-right: 5px;
  }

  .pagination-link {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #007bff;
    border-radius: 4px;
  }

  .pagination-link:hover {
    background-color: #f1f1f1;
  }

  .pagination-item.active .pagination-link {
    background-color: #007bff;
    color: white;
  }

  .pagination-link[aria-label="Previous"],
  .pagination-link[aria-label="Next"] {
    font-weight: bold;
  }
</style>



                     
                  

Flexible Billing

2.0%

for transactions within Europe

3.5%

for international transactions

Premium Business Plan

2.0%

for transactions within Europe

3.5%

for international transactions


                      
                      

                      <div class="container">
  <div class="row">
    <div class="col">
      <div class="card">
        <div class="card-header text-center">
          <strong>Flexible Billing</strong>
        </div>
        <div class="card-body">
          <div class="row">
            <div class="column text-center">
              <h3>2.0%</h3>
              <p class="small">for transactions within Europe</p>
            </div>
            <div class="column text-center">
              <h3>3.5%</h3>
              <p class="small">for international transactions</p>
            </div>
          </div>
        </div>
      </div>
    </div>
    <div class="col">
      <div class="card">
        <div class="card-header text-center">
          <strong>Premium Business Plan</strong>
        </div>
        <div class="card-body">
          <div class="row">
            <div class="column text-center">
              <h3>2.0%</h3>
              <p class="small">for transactions within Europe</p>
            </div>
            <div class="column text-center">
              <h3>3.5%</h3>
              <p class="small">for international transactions</p>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>

<!-- Milligram CSS classes -->
<style>
  .container {
    margin-top: 20px;
  }

  .card {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .card-header {
    font-size: 1.2rem;
    font-weight: bold;
  }

  .text-center {
    text-align: center;
  }

  .row {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .column {
    text-align: center;
    margin: 10px;
  }

  .small {
    font-size: 0.875rem;
    color: #6c757d;
  }
</style>



                     
                  

December 2024
Mo Tu We Th Fr Sa Su

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31


                      
                      
                      <div class="container">
  <div class="row">
    <div class="column">
      <div class="card">
        <div class="card-header">
          <strong>December 2024</strong>
          <div class="actions">
            <button aria-label="calendar backward" class="button">
              <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
                <path d="M0 0h24v24H0z" fill="none"/>
                <polyline points="15 6 9 12 15 18" />
              </svg>
            </button>
            <button aria-label="calendar forward" class="button">
              <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
                <path d="M0 0h24v24H0z" fill="none"/>
                <polyline points="9 6 15 12 9 18" />
              </svg>
            </button>
          </div>
        </div>
        <div class="card-body">
          <table class="u-full-width">
            <thead>
              <tr>
                <th>Mo</th>
                <th>Tu</th>
                <th>We</th>
                <th>Th</th>
                <th>Fr</th>
                <th>Sa</th>
                <th>Su</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td></td>
                <td></td>
                <td></td>
                <td><p>1</p></td>
                <td><p>2</p></td>
                <td><p>3</p></td>
                <td><p>4</p></td>
              </tr>
              <tr>
                <td><p>5</p></td>
                <td><p>6</p></td>
                <td><p>7</p></td>
                <td><button class="button is-primary">8</button></td>
                <td><p>9</p></td>
                <td><p>10</p></td>
                <td><p>11</p></td>
              </tr>
              <tr>
                <td><p>12</p></td>
                <td><p>13</p></td>
                <td><p>14</p></td>
                <td><p>15</p></td>
                <td><p>16</p></td>
                <td><p>17</p></td>
                <td><p>18</p></td>
              </tr>
              <tr>
                <td><p>19</p></td>
                <td><p>20</p></td>
                <td><p>21</p></td>
                <td><p>22</p></td>
                <td><p>23</p></td>
                <td><p>24</p></td>
                <td><p>25</p></td>
              </tr>
              <tr>
                <td><p>26</p></td>
                <td><p>27</p></td>
                <td><p>28</p></td>
                <td><p>29</p></td>
                <td><p>30</p></td>
                <td><p>31</p></td>
                <td></td>
              </tr>
            </tbody>
          </table>
        </div>
      </div>
    </div>
  </div>
</div>

<!-- Milligram CSS classes -->
<style>
  .container {
    margin-top: 20px;
  }

  .card {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .card-header {
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .actions button {
    background: none;
    border: none;
    cursor: pointer;
  }

  .card-body {
    padding-top: 20px;
  }

  .table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .table th,
  .table td {
    text-align: center;
    padding: 10px;
  }

  .button.is-primary {
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    padding: 10px;
  }

  .button {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
  }

  .button:hover {
    background-color: #f0f0f0;
  }
</style>




                     
                  

This file upload component is part of a comprehensive Bootstrap component library. For more details, visit the official Bootstrap Documentation.


                      
                      

                      <div class="container">
  <div class="row">
    <div class="column">
      <label for="dropzone-file" class="upload-box">
        <div class="upload-content">
          <svg class="upload-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M15 13l-3-3m0 0l-3 3m3-3v12"></path>
          </svg>
          <p><strong>Choose your file</strong> or simply drag it here</p>
          <p class="small">Supported formats: SVG, PNG, JPG, GIF (MAX. 800x400px)</p>
        </div>
        <input id="dropzone-file" type="file" class="hidden-input" />
      </label>
    </div>
  </div>
  <p class="mt-3">This file upload component is part of a comprehensive Bootstrap component library. For more details, visit the official <a class="text-primary" href="#" target="_blank">Bootstrap Documentation</a>.</p>
</div>

<style>
  .upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    border: 2px dashed #ccc;
    border-radius: 10px;
    background-color: #f5f5f5;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .upload-box:hover {
    background-color: #e0e0e0;
  }

  .upload-content {
    text-align: center;
    padding: 20px;
  }

  .upload-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    color: #888;
  }

  .upload-box p {
    margin-bottom: 5px;
    color: #555;
  }

  .upload-box p strong {
    font-weight: bold;
  }

  .upload-box p.small {
    font-size: 0.85rem;
    color: #888;
  }

  .hidden-input {
    display: none;
  }

  .mt-3 {
    margin-top: 20px;
  }
</style>



                     
                  

  • Overview
  • Stats
  • Preferences
  • Connections

This section provides an overview of the user's profile and the key details that define the account. You can view and edit your basic information here. Switch tabs to access different sections.

In the Stats tab, you can monitor the overall performance of your account. Check metrics such as activity, engagement, and other key statistics to understand how well your profile is doing.

Here you can adjust your preferences, including notification settings, privacy options, and other personal configurations. Customize the platform to suit your needs and preferences.

The Connections section allows you to manage your connections and communication with others. You can add, remove, or update your contacts here for easy access and interaction.


                      
                      

                      <div class="container">
  <ul class="tabs">
    <li class="tab-link active" data-tab="overview">Overview</li>
    <li class="tab-link" data-tab="stats">Stats</li>
    <li class="tab-link" data-tab="preferences">Preferences</li>
    <li class="tab-link" data-tab="connections">Connections</li>
  </ul>

  <div id="overview" class="tab-content active">
    <p class="text-muted">This section provides an overview of the user's profile and the key details that define the account. You can view and edit your basic information here. Switch tabs to access different sections.</p>
  </div>

  <div id="stats" class="tab-content">
    <p class="text-muted">In the Stats tab, you can monitor the overall performance of your account. Check metrics such as activity, engagement, and other key statistics to understand how well your profile is doing.</p>
  </div>

  <div id="preferences" class="tab-content">
    <p class="text-muted">Here you can adjust your preferences, including notification settings, privacy options, and other personal configurations. Customize the platform to suit your needs and preferences.</p>
  </div>

  <div id="connections" class="tab-content">
    <p class="text-muted">The Connections section allows you to manage your connections and communication with others. You can add, remove, or update your contacts here for easy access and interaction.</p>
  </div>
</div>



                     
                  

Dummy Image
Home Files Tasks Schedule Timing Documents Options

                      
                      

                      <div class="container">
  <div class="sidebar">
    <div class="image-container">
      <img src="https://dummyimage.com/722x402" alt="Dummy Image" class="img-fluid">
    </div>

    <nav class="menu">
      <ul>
        <li><a href="#" class="menu-item">Home</a></li>
        <li><a href="#" class="menu-item">Files</a></li>
        <li><a href="#" class="menu-item">Tasks</a></li>
        <li><a href="#" class="menu-item">Schedule</a></li>
        <li><a href="#" class="menu-item">Timing</a></li>
        <li><a href="#" class="menu-item">Documents</a></li>
        <li><a href="#" class="menu-item">Options</a></li>
      </ul>
    </nav>
  </div>
</div>

<style>
  .sidebar {
    width: 25%;
    background-color: #333;
    color: white;
    padding: 1em;
    border-radius: 8px;
  }

  .image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
  }

  .menu {
    list-style: none;
    padding: 0;
  }

  .menu-item {
    display: block;
    padding: 1em;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 1em;
    border-radius: 4px;
    transition: background-color 0.3s;
  }

  .menu-item:hover {
    background-color: #444;
  }

  .menu-item i {
    margin-right: 0.5em;
  }
</style>



                     
                  

Our Achievements

50

Users

15

Subscribes

12

Downloads

20

Products


                      
                      

                      <section>
  <div class="container">
    <div class="row">
      <div class="column">
        <h1 class="display-4">Our Achievements</h1>
        <div class="underline"></div>
      </div>
    </div>
    <div class="row">
      <div class="column">
        <div class="card">
          <h2 class="font-medium">50</h2>
          <p>Users</p>
        </div>
      </div>
      <div class="column">
        <div class="card">
          <h2 class="font-medium">15</h2>
          <p>Subscribes</p>
        </div>
      </div>
      <div class="column">
        <div class="card">
          <h2 class="font-medium">12</h2>
          <p>Downloads</p>
        </div>
      </div>
      <div class="column">
        <div class="card">
          <h2 class="font-medium">20</h2>
          <p>Products</p>
        </div>
      </div>
    </div>
  </div>
</section>

<style>
  .card {
    background-color: #28a745;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }
  .underline {
    height: 3px;
    width: 80px;
    background-color: #28a745;
    margin-top: 10px;
  }
</style>



                     
                  

通知

未読メッセージが3件あります。

デバイスに通知を送信します。
  • 通話が確認されました。

    1時間前
  • 新しいメッセージがあります!

    1時間前
  • サブスクリプションが間もなく期限切れです!

    2時間前

                      
                        
                      
                      <section>
  <div class="container">
    <div class="card">
      <div class="card-body">
        <h5 class="card-title">通知</h5>
        <p class="text-muted">未読メッセージが3件あります。</p>
        <div class="notification-item">
          <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-check-lg me-2" viewBox="0 0 16 16">
            <path d="M13.485 1.515a.5.5 0 0 1 .707 0l1.5 1.5a.5.5 0 0 1 0 .707l-9.5 9.5a.5.5 0 0 1-.707 0l-5-5a.5.5 0 0 1 .707-.707l4.646 4.647 9.146-9.147z"/>
          </svg>
          <small class="text-muted">デバイスに通知を送信します。</small>
          <label class="switch">
            <input type="checkbox" checked>
            <span class="slider"></span>
          </label>
        </div>

        <ul class="list">
          <li>
            <span class="dot bg-primary"></span>
            <div>
              <p>通話が確認されました。</p>
              <small class="text-muted">1時間前</small>
            </div>
          </li>
          <li>
            <span class="dot bg-primary"></span>
            <div>
              <p>新しいメッセージがあります!</p>
              <small class="text-muted">1時間前</small>
            </div>
          </li>
          <li>
            <span class="dot bg-primary"></span>
            <div>
              <p>サブスクリプションが間もなく期限切れです!</p>
              <small class="text-muted">2時間前</small>
            </div>
          </li>
        </ul>

        <button class="button-primary full-width">
          すべて既読にする
        </button>
      </div>
    </div>
  </div>
</section>

<style>
  .card {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
  }

  .notification-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }

  .notification-item svg {
    margin-right: 8px;
  }

  .switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
    margin-left: auto;
  }

  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    border-radius: 50%;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
  }

  input:checked + .slider {
    background-color: #4CAF50;
  }

  input:checked + .slider:before {
    transform: translateX(14px);
  }

  .list {
    padding-left: 20px;
    list-style-type: none;
  }

  .list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 10px;
  }

  .button-primary {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
  }

  .button-primary:hover {
    background-color: #0056b3;
  }
</style>