Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
147 changes: 147 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
<!DOCTYPE html>
<html>

<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Page Title</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='normalize.css'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
</head>

<body>
<header class="main-header">
<h3 id="companyName">Company name</h3>
<ul class="main-nav ">
<li><a href="">Features</a></li>
<li><a href="">Enterprise</a></li>
<li><a href="">Support</a></li>
<li><a href="">Pricing</a></li>
<li><a id="signup" href="">Sign up</a></li>
</ul>

</header>


<hr id="headerHr"/>

<div class="container">

<h1>Pricing</h1>

<p>Quickly build an effective pricing for your potential customers with this bootstrap example.
It's built with default Bootstrap components and utilities with little customization.</p>

<main class="deals">


<article class="sale-item">
<div class="saleH3">
<h3>Free</h3>
</div>


<div class="priceLabel">
<label class="price">$0</label>
<label>&nbsp;/ mo</label>
</div>
<ul>
<li>10 users included</li>
<li>2 GB storage</li>
<li>Email support</li>
<li>Help center access</li>
</ul>
<button class="btn">Sign up for free</button>
</article>

<article class="sale-item">
<div class="saleH3">
<h3>Pro</h3>
</div>

<div class="priceLabel">
<label class="price">$15</label>
<label>&nbsp;/ mo</label>
</div>
<ul>
<li>20 users included</li>
<li>10 GB storage</li>
<li>Priority email support</li>
<li>Help center access</li>
</ul>
<button class="btn btnFill">Get started</button>
</article>

<article class="sale-item">
<div class="saleH3">
<h3>Enterprise</h3>
</div>

<div class="priceLabel">
<label class="price">$29</label>
<label>&nbsp;/ mo</label>
</div>
<ul>
<li>30 users included</li>
<li>15 GB storage</li>
<li>Phone and email support</li>
<li>Help center access</li>
</ul>
<button class="btn btnFill">Contact us</button>
</article>

<!-- <hr id="footerHr clearfix"/> -->

</main>

</div>

<div id="hrDiv">
<hr class="footerHr" />
</div>


<footer class="main-footer">
<div id="copyright">
<label id="busB">B</label>
<label id="copy">&copy; 2017</label>
</div>

<section class="footer-nav">

<article class="footer-nav-item">
<h3>Features</h3>
<p></p>
<ul>
<li>Cool Stuff</li>
<li>Random feature</li>
<li>Team feature</li>
</ul>
</article>

<article class="footer-nav-item">
<h3>Resources</h3>
<p></p>
<ul>
<li>Resource</li>
<li>Resource name</li>
<li>Another resource</li>
</ul>
</article>

<article class="footer-nav-item">
<h3>About</h3>
<p></p>
<ul>
<li>Team</li>
<li>Locations</li>
<li>Privacy</li>
</ul>
</article>
</section>

</footer>
</body>

</html>
195 changes: 195 additions & 0 deletions main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,195 @@
body {
margin: 5px;
max-width: 1200px;
}

/* Main */
.main-header {
display: flex;
flex-direction: row;
justify-content: space-between;
}

.main-nav {
display: flex;
padding-top: 15px;
}

.main-nav a {
text-align: center;
display: block;
padding: 0 15px;
text-decoration: none;
color: black;
}

.container {
margin: 0% 28% 3em 28%;
display: flex;
flex-direction: column;
}

.container h1,
.container p {
text-align: center;
}

/* #companyName {
padding: 10px;
} */

/* Sale Item Button */
#signup,
.btn {
color: lightblue;
border: solid 2px lightblue;
border-radius: 5px;
background-color: white;
}

.sale-item .btn {
position: absolute;
bottom: 0;
margin: 5px;
width: 92%;

}

.btnFill {
background-color: blue;
border: solid 2px blue;
}

/* Sale Deal/ Item */

.deals {
padding-top: 1em;
display: flex;
gap: 1em;
justify-content: space-around;
flex-wrap: wrap;
}

.sale-item .price {
font-weight: bold;
font-size: 2em;
}

.sale-item {
max-width: 150px;
display: flex;
flex-direction: column;
border: solid lightslategray 1px;
/* background-color: whitesmoke; */
align-items: center;
position: relative;
}

.sale-item .saleH3 {
box-sizing: border-box;
width: 100%;
border-bottom: solid lightslategray 1px;
background-color: whitesmoke;
}

.sale-item .saleH3 h3{
margin: 5px 0;
font-size: .8em;

}

.priceLabel {
margin-top: .5em;
}

#headerHr {
border-top: 3px solid lightslategray;
box-shadow: 0 5px 10px 3px lightslategray;
margin-bottom: 20px;
}



#hrDiv {
width: 42%;
margin: auto;
}

#footerHr {
border-top: 3px solid lightslategray;
box-shadow: 0 5px 10px 3px lightslategray;
}


.main-footer {
display: flex;
flex-direction: row;
padding: 0 29%;
}

footer {
margin-top: 2em;
}

#copyright {
padding-top: 1.2em;
}


#busB {
text-align: center;
font-weight: bold;
display: block;
margin: 0 30px 0 0 ;
color: white;
background-color: purple;
border-radius: 5px;
}


/* Footer */
.footer-nav {
display: flex;
gap: 1em;
padding-left: 4em;
}

.footer-nav-item ul li {
text-align: left;
padding-left: .8em;
}



footer h3 {
font-weight: bold;
}

ul {
list-style: none;
padding: 0 15px 15px 15px;
margin: 25px 0;
font-size: .8em;
margin-block-start: .2em;
}

h3 {
text-align: center;
}

li {
text-align: center;
}

label {
text-align: center;
}

.clearfix {
content: "";
clear: both;
display: table;
}



Binary file modified mockup.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading