-
Notifications
You must be signed in to change notification settings - Fork 1
/
about-us.html
100 lines (86 loc) · 2.59 KB
/
about-us.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Cool Math Games</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #120c63;
color: white;
}
header {
background-color: #5f55e8;
color: white;
text-align: center;
padding: 1em;
}
main {
padding: 1em;
}
footer {
background-color: #0e085c;
color: white;
text-align: center;
padding: 1em;
position: fixed;
bottom: 0;
width: 100%;
}
img {
width: 100%; /* Make the images fill the width of their container */
height: auto; /* Maintain the aspect ratio */
margin-bottom: 10px; /* Add some space between images and subheadings */
}
h3 {
text-align: center;
}
.image-container {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.image-subheading {
width: 100%; /* Adjust the width as needed */
text-align: center;
}
</style>
</head>
<body>
<header class = "aboutUs">
<h1>About Us - Cold Math Games</h1>
</header>
<main>
<div class="image-container">
<div>
<img src="image1.jpg" alt="Image 1" />
<h3 class="image-subheading">Bryan</h3>
<p class="sub-paragraph">Bryan's description</p>
</div>
<div>
<img src="image2.jpg" alt="Image 2" />
<h3 class="image-subheading">Daiki</h3>
<p class="sub-paragraph">Daiki's description</p>
</div>
<div>
<img src="image3.jpg" alt="Image 3" />
<h3 class="image-subheading">Ria</h3>
<p class="sub-paragraph">Ria's description</p>
</div>
<div>
<img src="image4.jpg" alt="Image 4" />
<h3 class="image-subheading">Thomas</h3>
<p class="sub-paragraph">Joe mama</p>
</div>
</div>
</main>
<footer>
© 2024 ColdMathGames
<div id="go-back">
<h3><a id="go-back-link" href="coolMath.html">Return</a></h3> <!--return back to the main page coolMath.html-->
</div>
</footer>
</body>
</html>