-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
75 lines (73 loc) · 3.15 KB
/
Copy pathabout.html
File metadata and controls
75 lines (73 loc) · 3.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>About - ECOSTRAW</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/about_style.css">
</head>
<body>
<nav>
<a href="index.html"><h1 class="logo">Ecostraw</h1></a>
<a href="index.html">Home</a>
<a href="product.html">Ecostraw 1.0</a>
<a class="active" href="about.html">About</a>
<a href="contact.html">Contact</a>
</nav>
<main>
<div class="backdrop">
<div class="text-field">
<h2 class="header">About us</h2>
<p class="txt">Here at ECOSTRAW we want people to enjoy themselves and live a “care-free” lifestyle without worrying about ruining the environment. With the ever-growing concern of one-time-use plastic straws that are ruining our nature and wildlife, we wanted to create a better solution. Our metal straws are completely reusable and washable so you can keep using the same straw and say goodbye to plastic straws. Drink with conscience, drink with ECOSTRAW. <br><br>Want to sell Ecostraws? <a href="contact.html" class="contact-us">Contact us</a></p>
<h2 class="header2">Ecostraw retailers</h2>
<div class="table">
<table class="retailers">
<thead>
<tr>
<th>Retailer</th>
<th>Mail</th>
<th>Phone</th>
</tr>
</thead>
<tbody>
<tr>
<td>Retailer #1</td>
<td><a href="mailto: service@retailermail.com">service@retailermail.com</a></td>
<td>+47 000-00-000</td>
</tr>
<tr>
<td>Retailer #2</td>
<td><a href="mailto: service@retailermail.com">service@retailermail.com</a></td>
<td>+47 000-00-000</td>
</tr>
<tr>
<td>Retailer #3</td>
<td><a href="mailto: service@retailermail.com">service@retailermail.com</a></td>
<td>+47 000-00-000</td>
</tr>
<tr>
<td>Retailer #4</td>
<td><a href="mailto: service@retailermail.com">service@retailermail.com</a></td>
<td>+47 000-00-000</td>
</tr>
<tr>
<td>Retailer #5</td>
<td><a href="mailto: service@retailermail.com">service@retailermail.com</a></td>
<td>+47 000-00-000</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</main>
<footer>
<p>ECOSTRAW ©</p>
<p>2020</p>
<p>Developed by Erling Midttun</p>
</footer>
</body>
</html>