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
98 changes: 98 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
<!DOCTYPE html>

<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Pricing Lab</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<main class="grid">
<header><h1>Company name</h1></header>
<nav>

<a>Features</a>
<a>Enterprise</a>
<a>Support</a>
<a>Pricing</a>
<a>Sign up</a>

</nav>
<div class="pricing">
<h2>Pricing</h2>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour
.</p>
</div>
<div class="flexcard">
<div class="card" id="free">
<h3>Free</h3>
<h4>$0 / mo</h4>
<ul>
<li>10 users included</li>
<li>2GB of storage</li>
<li>Email support</li>
<li>Helpcenter access</li>

</ul>
<button type="button" class="signupbtn">Sign Up</button>
</div>
<div class="card" id="pro">
<h3>Pro</h3>
<h4>$15 / mo</h4>
<ul>
<li>20 users included</li>
<li>10GB of storage</li>
<li>Priority email support</li>
<li>Helpcenter access</li>

</ul>
<button type="button" class="startbtn">Get Started</button>
</div>
<div class="card" id="enterprise">
<h3>Enterprise</h3>
<h4>$29 / mo</h4>
<ul>
<li>30 users included</li>
<li>15GB of storage</li>
<li>Phone and email support</li>
<li>Helpcenter access</li>

</ul>
<button type="button" class="contactbtn">Contact Us</button>
</div>
</div>
<footer>
<img src="" alt="">&copy;
<div>
<h5>Features</h5>
<ul>
<li>Cool stuff</li>
<li>Random feature</li>
<li>Team feature</li>
</ul>
</div>
<div>
<h5>Resources</h5>
<ul>
<li>Resource</li>
<li>Resource name</li>
<li>Another resource</li>
</ul>
</div>
<div>
<h5>About</h5>
<ul>
<li>Team</li>
<li>Locations</li>
<li>Privacy</li>
</ul>
</div>
</footer>
</main>


</body>
</html>
62 changes: 62 additions & 0 deletions stylesheet.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
.grid{

display:grid;
grid-template-areas:
"header . nav"
". pricing ."
"flexcard flexcard flexcard"
"footer footer footer";

}
.flexcard{

display:flex;
flex-wrap:wrap;
justify-content: space-evenly;
grid-area:flexcard;
}

nav{
grid-area:nav;

}

header{
grid-area:header;

}
/* #free{
grid-area:free;

}
#pro{
grid-area:pro;

}
#enterprise{
grid-area:enterprise;

} */
footer{

grid-area:footer;
display:flex;
flex-wrap:wrap;
justify-content: space-evenly;


}
.pricing{
grid-area:pricing;
text-align:center;

}
ul{
list-style: none;
padding:0;

}
li{
padding:3px 0;

}