-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (79 loc) · 2.68 KB
/
index.html
File metadata and controls
83 lines (79 loc) · 2.68 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/stylesheet.css">
<title>Week 3 Lab 3</title>
</head>
<body>
<nav class="flexnav">
<h1>Company Name</h1>
<a href="">Features</a>
<a href="">Enterprise</a>
<a href="">Support</a>
<a href="">Pricing</a>
<a href="" class="nav-signup">Sign up</a>
</nav>
<header class="flexmain">
<h2>Pricing</h2>
<p>t is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less making it look like readable English.</p>
</header>
<main class="flexmain">
<div class="cards">
<h3>Free</h3>
<p>$0 / mo</p>
<ul title="Free">
<li>10 users included</li>
<li>2 GB of storage</li>
<li>Email support</li>
<li>Help center access</li>
</ul>
<a href="" class="main-signup">Sign up for free</a>
</div>
<div class="cards">
<h3>Pro</h3>
<p>$15 / mo</p>
<ul>
<li>10 users included</li>
<li>2 GB of storage</li>
<li>Email support</li>
<li>Help center access</li>
</ul>
<a href="" class="main-links">Get started</a>
</div>
<div class="cards">
<h3>Enterprise</h3>
<p>$29 / mo</p>
<ul>
<li>10 users included</li>
<li>2 GB of storage</li>
<li>Email support</li>
<li>Help center access</li>
</ul>
<a href="" class="main-links">Contact us</a>
</div>
</main>
<hr>
<footer>
<img src=""><p>© 2017</p>
<h4>Features</h4>
<ul>
<li>Cool stuff</li>
<li>Random feature</li>
<li>Team feature</li>
</ul>
<h4>Resources</h4>
<ul>
<li>Resource</li>
<li>Resource name</li>
<li>Another resource</li>
</ul>
<h4>About</h4>
<ul>
<li>Team</li>
<li>Location</li>
<li>Privacy</li>
</ul>
</footer>
</body>
</html>