-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinformation.html
More file actions
60 lines (54 loc) · 2.24 KB
/
information.html
File metadata and controls
60 lines (54 loc) · 2.24 KB
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
<!-- This file brings the user to the information screen when the
information button is clicked -->
<html>
<style>
body {
background-color:black;
background-position: center;
overflow: scroll;
}
</style>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<html>
<style>
.multicolortext {
background-image: linear-gradient(to left, violet, indigo, green, blue, yellow, orange, red);
-webkit-background-clip: text;
-moz-background-clip: text;
background-clip:text;
color:transparent;
}
</style>
</html>
<html>
<div class="p1">
<h1>
<span class="multicolortext">Helpful Information</span>
</h1>
</div>
<div class="g1"><p>
Why is Color Theory Important?
</p></div>
<div class="p3"><p1>
Color theory is both the science and art of using color. It explains how humans perceive color, and how colors mix, match, or
contrast with each other. Color theory also conveys
the ways in which colors interact with each other in the natural world,
as well as how to create certain colors through the addition or subtraction of color. The foundation of color theory, which is where this games focal point lies,
is comprised of a breakdown of colors into specific categories: primary, secondary, and tertiary colors. For clarity, there are more colors than just primary, secondary, and tertiary colors, but the colors within these three categories are
where most of the common colors we encounter in our daily lives fall into. This game explores the additive side of color theory with the utilization of the RBG color wheel.
</p1>
</div>
<!-- this button returns the user to the home screen -->
<div class="homebutton9"<button onclick="location.href='index.html'">
GO HOME
</button>
</div>