-
Notifications
You must be signed in to change notification settings - Fork 0
/
flex.html
76 lines (72 loc) · 2.83 KB
/
flex.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="shortcut icon" type="image/png" href="images/logo_icon.png"/>
<link rel="stylesheet" type="text/css" href="css/html5reset.css">
<link rel="stylesheet" type="text/css" href="css/starter.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Super Slick Company</title>
</head>
<body>
<a class = "skip" href="#skip">Skip to Main Content</a>
<header>
<img src="images/logo.png" alt="" id = "logo">
<nav>
<ul class="nav_links">
<li class="nav_item"><a href="#skip">About</a></li>
<li class="nav_item"><a href="#pricing">Prices</a></li>
<li class="nav_item"><a href="#gallery">Gallery</a></li>
</ul>
</nav>
</header>
<main class="about" id="skip">
<h1>Super Slick Company</h1>
<p>We're Super Slick Co. and we like to make all your stuff look like a million bucks. How? Through the power of creativity and trendiness! We sell out so you don't have to.</p>
<h2 id = "pricing">Pricing</h2>
<div class="pricing">
<div class="card">
<header><h3>$20</h3></header>
<ul>
<li><header><h4>"Pretty Cool" package</h4> </header></li>
<li>Your customers will dig it!</li>
<li>50 colors and patterns to pick from</li>
</ul>
<button>Buy $20 Package</button>
</div>
<div class="card">
<header><h3>$35</h3></header>
<ul>
<li><header><h4>"Very Cool" package</h4> </header></li>
<li>Your customers will be so hyped for your product!</li>
<li>150 colors and patterns to pick from</li>
</ul>
<button>Buy $35 Package</button>
</div>
<div class="card">
<header><h3>$50</h3></header>
<ul>
<li><header><h4>"Ultra Cool" package</h4> </header></li>
<li>You will be setting the trends!</li>
<li>500 colors and patterns to pick from</li>
</ul>
<button>Buy $50 Package</button>
</div>
</div>
<h2 id = "gallery">Gallery</h2>
<div class="gallery">
<img id="image1" src="images/sample.jpg" alt="" />
<img id="image2" src="images/logo.png" alt="" />
<img id="image3" src="images/sample.jpg" alt="" />
<img id="image4" src="images/logo.png" alt="" />
<img id="image5" src="images/sample.jpg" alt="" />
</div>
</main>
<footer>
<p>University of Michigan School of Information <br/>
© Colleen van Lent, Drew Asselin - Web Design 2019-2020</p>
</footer>
</body>
</html>