-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbathroom.html
More file actions
47 lines (45 loc) · 2.52 KB
/
bathroom.html
File metadata and controls
47 lines (45 loc) · 2.52 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
<!DOCTYPE html>
<head>
<link href='css/bootstrap.css' rel='stylesheet'>
<link rel='stylesheet' href='style.css'>
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
</head>
<div class="jumbotron text-center">
<div id="myNav" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div class="overlay-content">
<a href="index.html">Home</a>
<a href="products.html">Products</a>
<a href="food.html">Food</a>
<a href="contacts.html">Contact</a>
<a href="share.html">Share</a>
</div>
</div>
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰ open</span>
<script>
function openNav() {
document.getElementById("myNav").style.height = "100%";
}
function closeNav() {
document.getElementById("myNav").style.height = "0%";
}
</script>
<header>
<h1> Sustainable Bathroom Swaps </h1>
</header>
<body>
<div class=“row”>
<div class="col-xs-4"><img src="bathroom_swaps.jpg" class="img-fluid" alt="Photo of sustainable Bathroom Products"></div>
<h2> Shampoo bars </h2>
<p>Did you know you can reduce the amount of plastic waste you produce massively, simply by replacing your shampoo and conditioner plastic bottles with shampoo and conditioner bars?
Lots of brands now make their own, also using natural products that are kinder to your skin as well as the environment </p>
<h2> Double edge safety razors </h2>
<p> You don't have to give up shaving to be plastic free! Just get yourself a double-edge safety razor instead of your disposable razors. Purchase one today too! </p>
<h2> Menstrual Cup & Washable Pads</h2>
<p> Did you know that on average, women use on average 11,250 single-use disposable tampons or pads and spend on average £4,800 over their lifetime?
If this seems a little absurd and unfair to you too, there is a solution... Menstrual cups are made of flexible medical grade silicone and shaped like a bell with a stem, which, unlike tampons you can keep inside for up to 12 hours and when you remove it, you simply wash it or put it in boiling water to disinfect it. It takes a little getting used to, but it is definitely worth it (so did tampons though at first?)! It is normally sold online and in most farmacies for between £10-20</p>
<p> If this doesn't appeal to you, then you can also purchase reusable pads, made in soft fabric which is often much kinder to your skin than normal disposable pads. Just throw them in the washing machine with your other clothes! </p>
</div>
</body>
</div>