-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
121 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"> | ||
<title>Document</title> | ||
<style> | ||
.nt{ | ||
border: 2px solid; | ||
} | ||
.cmp{ | ||
margin-right: auto; | ||
} | ||
.card{ | ||
width:300px; | ||
height:350px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="d-flex pt-3 shadow pb-3 mb-5"> | ||
<h5 class="ps-3 cmp">Company Name</h5> | ||
<div class="d-flex justify-content-between flex-wrap"> | ||
<a href="" class="btn">Features</a> | ||
<a href="" class="btn">Enterprise</a> | ||
<a href="" class="btn">Support</a> | ||
<a href="" class="btn">Pricing</a> | ||
<button class="border btn text-primary">Sign up</button> | ||
</div> | ||
</div> | ||
<div> | ||
<div class="display-1 text-center">Pricing</div> | ||
<div class="text-center" style="margin:40px 25vw;">Lorem ipsum dolor sit amet consectetur adipisicing elit. Omnis aut earum totam veniam nemo doloremque, quia sit! Iure, accusamus numquam! Voluptatibus assumenda sint blanditiis. Odit modi sapiente a minima cumque.</div> | ||
</div> | ||
<div class="d-flex flex-wrap justify-content-around"> | ||
<div class="card text-center m-5"> | ||
<div class="card-header bg-light display-6 mb-3">Free</div> | ||
<h1>$0 <span class="text-secondary">/mo</span></h1> | ||
<div class="card-body"> | ||
<div>10 users included</div> | ||
<div>2 GB of storage</div> | ||
<div>Email support</div> | ||
<div>Help center access</div> | ||
</div> | ||
<button class="nt border btn text-primary m-3 ps-5 pe-5" data-bs-target="#fir" data-bs-toggle="modal">Sign up for free</button> | ||
<div class="modal" id="fir"> | ||
<div class="modal-dialog"> | ||
<div class="modal-content"> | ||
<div class="modal-header bg-light display-6 mb-3">Free | ||
<button class="btn-close" data-bs-dismiss="modal"></button> | ||
</div> | ||
<h1>$0 <span class="text-secondary">/mo</span></h1> | ||
<div class="card-body"> | ||
<div>10 users included</div> | ||
<div>2 GB of storage</div> | ||
<div>Email support</div> | ||
<div>Help center access</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="card text-center m-5"> | ||
<div class="card-header bg-light display-6 mb-3">Pro</div> | ||
<h1>$15 <span class="text-secondary">/mo</span></h1> | ||
<div class="card-body"> | ||
<div>20 users included</div> | ||
<div>10 GB of storage</div> | ||
<div>Priority email support</div> | ||
<div>Help center access</div> | ||
</div> | ||
<button class="nt btn btn-primary text-dark m-3 ps-5 pe-5" data-bs-target="#sec" data-bs-toggle="modal">Get started</button> | ||
<div class="modal" id="sec"> | ||
<div class="modal-dialog"> | ||
<div class="modal-content"> | ||
<div class="modal-header bg-light display-6 mb-3">Pro | ||
<button class="btn-close" data-bs-dismiss="modal"></button> | ||
</div> | ||
<h1>$15 <span class="text-secondary">/mo</span></h1> | ||
<div class="card-body"> | ||
<div>20 users included</div> | ||
<div>10 GB of storage</div> | ||
<div>Priority email support</div> | ||
<div>Help center access</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="card text-center m-5"> | ||
<div class="card-header bg-light display-6 mb-3">Enterprise</div> | ||
<h1>$29 <span class="text-secondary">/mo</span></h1> | ||
<div class="card-body"> | ||
<div>30 users included</div> | ||
<div>15 GB of storage</div> | ||
<div>Phone and email support</div> | ||
<div>Help center access</div> | ||
</div> | ||
<button class="nt btn btn-primary m-3 ps-5 pe-5" data-bs-target="#thr" data-bs-toggle="modal">Contact us</button> | ||
<div class="modal" id="thr"> | ||
<div class="modal-dialog"> | ||
<div class="modal-content"> | ||
<div class="modal-header bg-light display-6 mb-3">Enterprise | ||
<button class="btn-close" data-bs-dismiss="modal"></button> | ||
</div> | ||
<h1>$29 <span class="text-secondary">/mo</span></h1> | ||
<div class="card-body"> | ||
<div>30 users included</div> | ||
<div>15 GB of storage</div> | ||
<div>Phone and email support</div> | ||
<div>Help center access</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script> | ||
</body> | ||
</html> |