-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (99 loc) · 3.5 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Upper Horton Sports Club</title>
<style>
/* Reset default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Helvetica Neue', Arial, sans-serif;
}
/* Body styles */
body {
background-color: #f5f5f5;
color: #333;
}
/* Header styles */
header {
background-image: url('https://github.com/hawkinle/hawkinle.github.io/blob/main/images/banner.jpg?raw=true');
background-size: cover;
background-position: center;
margin: 10px;
height: auto; /* Changed from fixed height to auto */
padding: 20% 0; /* Adjust the padding to maintain aspect ratio */
text-align: center;
color: #fff;
}
/* Adjust header padding for mobile devices */
@media only screen and (max-width: 768px) {
header {
padding: 40% 0; /* Increase padding for smaller screens */
}
}
h1 {
font-size: 36px;
margin-bottom: 10px;
}
p {
font-size: 18px;
}
/* Container styles */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Opening hours styles */
.opening-hours {
margin-top: 20px;
}
h2 {
font-size: 24px;
margin-bottom: 10px;
}
p.opening-hours {
font-size: 16px;
}
/* Contact styles */
.contact {
margin-top: 20px;
font-weight: bold;
}
a {
color: #003366;
text-decoration: none;
}
</style>
</head>
<body>
<header>
<h1></h1>
<p></p>
</header>
<div class="container">
<section>
<h2>About Us</h2>
<p>Welcome to the Upper Horton Sports Club, the heart of our vibrant community. We are a small, community-run club, deeply rooted in our local area and dedicated to growing alongside it. Our mission is to foster a spirit of camaraderie, sportsmanship, and community engagement, and we encourage everyone in our community to participate in our facilities.</p>
<p>If you're interested in a game of tennis, the thrill of a campdraft, the adventure of a motorbike trail ride, a relaxing game of bowls or simply enjoying a cold beer in good company, we've got you covered. At Upper Horton Sports Club, we're more than just a sports club - we're a family. We look forward to welcoming you and sharing the many experiences we have to offer.</p>
</section>
<section class="opening-hours">
<h2>Opening Hours</h2>
<h3>(All opening hours are subject to patronage)</h3>
<p class="opening-hours">
Wednesday: 5:00 PM - 9:00 PM<br>
Thursday: 5:00 PM - 9:00 PM<br>
Friday: 5:00 PM - 11:00 PM (Meals available)<br>
Saturday: 5:00 PM - 11:00 PM<br>
Sunday: 12:00 PM - 3:00 PM (Lunch) 5:00 PM - 9:00 PM (Pizzas)
</p>
</section>
<section class="contact">
<p>Contact us: <a href="tel:(02) 6782 7249">(02) 6782 7249</a></p>
</section>
</div>
</body>
</html>