-
Notifications
You must be signed in to change notification settings - Fork 0
/
BirdWorld.html
80 lines (80 loc) · 3.21 KB
/
BirdWorld.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
<!DOCTYPE html>
<html>
<head>
<title>BirdWorld</title>
<style>
body {
background: linear-gradient(to bottom, #f849a1, #040720);
display: flex;
flex-direction: column;
align-items: center;
margin: 0px;
font-family: Arial, sans-serif;
color: white;
width: 100%;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
max-width: 1200px;
padding: 20px;
box-sizing: border-box;
}
.video-section {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
margin-top: 40px;
}
video {
width: 100%;
max-width: 800px;
}
.description {
margin-top: 40px;
font-size: 1.2em;
max-width: 800px;
width: 100%;
text-align: left; /* Align text to the left */
}
.photos {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
margin-top: 40px;
margin-bottom: 40px; /* Adds gap after photos */
width: 100%;
}
.photo {
width: 30%;
max-width: 200px;
height: auto;
border: 2px solid white;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="container">
<div class="video-section">
<video controls autoplay muted src="LittleBirdieTrailer(1080P_HD).mp4"></video>
</div>
<div class="description">
<h2>Bird World</h2>
<p>
Bird Word is an enchanting open-world adventure where you take control of a bird soaring through a vibrant, immersive landscape. With intuitive mouse controls, glide effortlessly through lush forests, sparkling rivers, and majestic mountains. Explore at your own pace, discover hidden treasures, and unlock the secrets of a beautifully crafted world. Experience the freedom of flight in a game that celebrates exploration and creativity!
Bird Word Game Based On Blueprint Template for Unreal Engine that provides core functionalities like modular tile creation, obstacles and power-ups spawning and a mechanism to change gameplay style during runtime.
</p> </div>
<div class="photos">
<img src="250359341-8cf77f69-35c4-42f5-98c9-2e1377c7ae03.gif" alt="Bird World Screenshot 4" class="photo">
<img src="250360048-b6bb2cb8-0172-4010-bf66-2671c8852911.gif" alt="Bird World Screenshot 3" class="photo">
<img src="e8hfXI.png" alt="Bird World Screenshot 2" class="photo">
<img src="QNgDTW.png" alt="Bird World Screenshot 1" class="photo">
</div>
</div>
</body>
</html>