-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
174 lines (156 loc) · 5.38 KB
/
about.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html>
<style>
.body {
padding: 0;
text-align: center;
background: #23272a;
color: white;
font-size: 30px;
font-family: Arial
}
.header {
padding: 30px;
text-align: center;
background: #23272a;
color: white;
font-size: 30px;
}
.menu {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
.rexlogo {
float:left;
max-width: 100px;
margin: 5px;
padding: 0px
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #111;
}
.rexlogo a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.rexlogo a:hover {
background-color: #111;
}
* {box-sizing:border-box}
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}
@-webkit-keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
.fade-in-image {
animation: fadeIn 5s;
-webkit-animation: fadeIn 5s;
-moz-animation: fadeIn 5s;
-o-animation: fadeIn 5s;
-ms-animation: fadeIn 5s;
}
@keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-moz-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-webkit-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-o-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-ms-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
.ccstatement {
padding: 0;
text-align: center;
background: #2c2f33;
color: white;
font-size: 20px;
font-family: Arial
}
a:link {
color: white;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: white;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: gainsboro;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: gainsboro;
background-color: transparent;
text-decoration: underline;
}
</style>
<head>
<title> Rex Animation Studios </title>
<link rel="icon" href="https://media.discordapp.net/attachments/835115484596142097/929020194733559918/thumb.png">
</head>
<body class="body">
<ul class="menu">
<li class="rexlogo"><img src="https://media.discordapp.net/attachments/835115484596142097/929024343458066432/nameofwebsite.png?width=1114&height=702" style="width:100%;height:100%"></li>
<li><a href="home.html">Home</a></li>
<li><a href="animations.html">Animations</a></li>
<li><a href="merch.html">Merch</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About</a></li>
</ul>
<h1>Who Are We?</h1> <br>
<h2 class="fade-in-image">We are Rex Animation Studios. <br> It is our passion to bring the colourful imagination of kids to life, through our family beloved stories. We work day and night to bring you the highest quality possible, so that our little friends can enjoy a life broader of inspiration for their future selves. Our animations prepare kids for honesty, respect, tolerance and most importantly love, which are qualities that turns one into a more valuable person. </h2>
<img src="https://media.discordapp.net/attachments/835115484596142097/929024343458066432/nameofwebsite.png?width=1114&height=702">
<br>
<h3><a href="home.html">Back to Home</a></h3>
<div class="ccstatement">
<br>
<a href="home.html">- Home</a> <br>
<a href="animations.html">- Animations</a> <br>
<a href="merch.html">- Merch</a> <br>
<a href="about.html">- About</a> <br>
<a href="contact.html">- Contact</a> <br>
<a href="disclaimer.html">- Policy</a> <br><br>
<a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc/4.0/88x31.png" /></a><br />This website is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/">Creative Commons Attribution-NonCommercial 4.0 International License</a>.
<br> <br>
<p class="ccstatement">Rex Animation Studios</p>
</div>
</body>