-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOwner-Feedback.html
135 lines (119 loc) · 6.12 KB
/
Owner-Feedback.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rollesby Weatens</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style-3.css">
</head>
<body>
<div class="container">
<div id="mySidebar" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div class="overlay-content">
<a href="index.html">Home</a>
<a href="About-the-Breed.html">About the Breed</a>
<a href="Gallery.html">Gallery</a>
<a href="Puppies.html">Puppies</a>
<a href="Puppy-Updates.html">Puppy Updates</a>
<a href="Owner-Feedback.html">Owner Feedback</a>
<a href="Contact-us.html">Contact Us</a>
</div>
</div>
<div class="sidebar">
<!-- <div id="mySidebar" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
</div> -->
<img src="Logo.png">
<a href="index.html">Home</a>
<a href="About-the-Breed.html">About the Breed</a>
<a href="Gallery.html">Gallery</a>
<a href="Puppies.html">Puppies</a>
<a href="Puppy-Updates.html">Puppy Updates</a>
<a href="Owner-Feedback.html">Owner Feedback</a>
<a href="Contact-us.html">Contact Us</a>
</div>
<div id="main">
<header>
<button class="openbtn" onclick="openNav()">☰ Menu</button>
<img src="Logo.png">
</header>
<!-- <button class="openbtn" onclick="openNav()">☰ Menu</button> -->
<h1>Owner Feedback:</h1>
<h3>The Walsh Family:</h3>
<p> We have bought 2 of Shelley’s beautiful puppies. <br> From the initial enquires Shelley kept
us up to date
sending photos of the pups & how they were progressing.<br> She organised their flights up to AKL & each
had
a
toy that one of my dogs still has today 9 years later. <br> Both my dogs have lovely natures & very
loving
they
are absolutely part of our family. <br> They are the best breed & Shelley is the best breeder, she has
kept
in
touch with us over the years always available offering advice if required. <br> (Clooney as a puppy then
grown up on the Left & Ziva as a puppy then a grown up on the Right)
<p>
<div class="column">
<img src="Ziva(Walsh Puppy).jpeg">
<img src="Ziva(Grown up).jpeg">
<img src="Clooney-(Walsh Puppy no2).jpeg">
<img src="Clooney-(Grown up) .jpeg">
</div>
<h3>W&N Cochrane </h3>
<p>
2 kids.
9 years ago our daughter (15) was in constant agony from a virus that attack her nerve ends, even on
very strong pain relief which did nothing for her.<br> One specialist suggested getting her a pet?
The girls came up with Soft Coated Wheaten Terrier would be the dog breed then found ROLLESBY
WHEATENS.<br> After some research and contact was made.
I wasn’t so keen as I still had a farm to run in South Canterbury but I knew it would give my daughter
some relief so I said yes as long as I don’t get anymore work. 🤦♂️🤪🤣what joke.<br> Monty was a
little
brother to our daughter but he seem to know I was his master and follow my most of the time like a
shadow and suckered me into anything. <br>But I’ll never forget hearing my daughter laughing for the
first
time in a long time as she went running around our house with Monty trying to catch her slipping and
sliding everywhere. It was totally hilarious and the relief that everyone needed.<br>Unfortunately our
brand-new rimu timber floor didn’t look new for long as Monty’s nails got bigger.
Monty was easy to train is very intelligent & cute and he knows it too 🙄 loves coming with me on
landscape photography & loves hiking. Loves being in the vehicles or boat. He didn’t like the farm much
until he was about 3.5 then I sold it. <br> But he’s happy to bark at cattle and sheep in your ear in
the car
🤦♂️
He turns 9 soon and is totally a joy to be around and is part of our family. Best thing I have brought
in 9 years hands down. <br>
He is a very happy relaxed dog and well used to all the hugs and pats & being photographed by strangers
on top of what he gets from us. He makes so many people smile. <br>
He gets recognised a lot as I post regularly on IG & FB as #montymonday to keep his fans happy all
around the planet.
We are responsible for a few people getting a Wheaton.<br>
No regrets. <br> Very happy to recommend Shelley and her Wheatens <br>
Willy Cochrane
</p>
<div class="column">
<img src="Monty(Puppy).png">
<img src="Monty2.png">
<img src="Monty3.png">
<img src="Monty4.png">
</div>
</div>
</div>
</body>
<footer>
<h4>©Charley Ensor 2023</h4>
</footer>
</html>
<script>
/* Set the width of the sidebar to 250px and the left margin of the page content to 250px */
function openNav() {
document.getElementById("mySidebar").style.width = "100%";
}
/* Set the width of the sidebar to 0 and the left margin of the page content to 0 */
function closeNav() {
document.getElementById("mySidebar").style.width = "0";
}
</script>