-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (47 loc) · 1.36 KB
/
index.html
File metadata and controls
53 lines (47 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>repl.it</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="shop.html">Visit</a></li>
</ul>
</div>
<h1>Home</h1>
<div class="flexparent">
<div class="easy">
<h3>Easy</h3>
<p>Answer 10 simple questions to bring the expertise of our QC team to your cup.</p>
</div>
<div class="quick">
<h3>Quick</h3>
<p>Coffee Match only takes a few minutes, so you can get to the good part: tasting coffee.</p>
</div>
<div class="personal">
<h3>Personalized</h3>
<p>Get custom coffee recommendations based on your unique flavor preferences.</p>
</div>
</div>
<p class="button"><a href="#">Find your favorite</a></p>
<form class="">
<label>Email:</label>
<input type="email" name="email" placeholder="Please provide a valid email..." maxlength="5">
<label>Subject:</label>
<select name="subject">
<option value="none">Pick one</option>
<option value="option1">General Inquiry</option>
<option value="option2">Mobile App</option>
</select>
<textarea name="message"></textarea>
<input type="submit">
</form>
</div>
</body>
</html>