-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
82 lines (66 loc) · 1.78 KB
/
services.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>replit</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="banner">
<a href="index.html">
Home
</a>
<a href="about.html">
About Us
</a>
<a href="services.html">
Services
</a>
<a href="contact.html">
Contact Us
</a>
</div>
<h1>Dumfries Fun Farm</h1>
<p>
You can feed lots of animals here!
Here are some of them!
</p>
<style>
.column {
float: left;
width: 33.33%;
padding: 5px;
}
.row::after {
content: "";
clear: both;
display: table;
}
</style>
<div class="row">
<div class="column">
<img src="assets/E3qEtv-sheep-amazing-image-download.png" alt="Snow" style="width:100%">
</div>
<div class="column">
<img src="assets/cow-dairy-farms-american-dairy-association-north-east-35.png" alt="Forest" style="width:100%">
</div>
<div class="column">
<img src="assets/Goat-PNG-Clipart-Background.png" alt="Mountains" style="width:100%">
</div>
</div>
<p>All of our animals are treated very well and love to see you. All you have to do is go over to them and you can
give them a pet!</p>
<h1>
The Cafe
</h1>
<p>Here us our meals that are cooked in house by our own chef. It's all ethically sourced and super tasty!</p>
<img src="assets/media_15ff12f75cf551dedb99113648b8e906070828bfa.png">
<div class="footer">
Copyright Dumfries Fun Farm 2022
</div>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<script src="script.js"></script>
<script src="https://replit.com/public/js/replit-badge.js" theme="blue" defer></script>
</body>
</html>