-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaustralian-cultural-festival.html
44 lines (44 loc) · 1.25 KB
/
australian-cultural-festival.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Australian Cultural Festival</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #FFF7E6;
color: #333;
}
header {
background-color: #008B8B;
color: #FFF;
text-shadow: 2px 2px 4px #0005;
padding: 20px;
text-align: center;
}
h1 {
font-size: 2.5rem;
text-transform: uppercase;
}
.content {
padding: 20px;
box-shadow: 5px 5px 15px #ccc;
}
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<header>
<h1>Welcome to the Australian Cultural Festival</h1>
</header>
<div class="content">
<p>Join us to celebrate the rich and vibrant culture of Australia, from indigenous performances to contemporary art exhibitions.</p>
</div>
</body>
</html>