-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (101 loc) · 5.44 KB
/
Copy pathindex.html
File metadata and controls
106 lines (101 loc) · 5.44 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
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
<html>
<head>
<title>Let's Practice!</title>
<link rel="stylesheet" href="./CSS/index.css">
<head>
<body>
<script defer="defer" src="./components/Menu/Menu.js"></script>
<script defer="defer" src="./components/Buttons/Buttons.js"></script>
<div class="header-container">
<div class="menu">
<div class="menu-button">Menu</div>
<div class="menu-content menu-hidden">
<a class="menu-link" href="https://cat-bounce.com/" target="_blank">Bouncing Cats</a>
<a class="menu-link" href="http://www.drawastickman.com/episode1/" target="_blank">Draw Stickman</a>
<a class="menu-link" href="https://theuselessweb.com/" target="_blank">Useless</a>
</div>
</div>
<img src="OhWhale.jpg" class="header" />
</div>
<div class="section">
<div class="box">
<div class="box-title">I am the Left</div>
<div class="box-description">
A person who is "left-brained" is often said to be more logical, analytical, and objective.
The left-side of the brain is considered to be adept at tasks that involve logic, language, and analytical thinking. The left-brain is described as being better at:
Language, Logic, Critical thinking, Numbers, and Reasoning.
</div>
</div>
<div class="box">
<div class="box-title">I am the Right</div>
<div class="box-description">
A person who is "right-brained" is said to be more intuitive, thoughtful, and subjective.
According to the left-brain, right-brain dominance theory, the right side of the brain is best at expressive and creative tasks. Some of the abilities popularly associated with the right side of the brain include:
Recognizing faces, Expressing emotions, music, color, imagination, intuition and creativity.
</div>
</div>
</div>
<div class="section">
<div class="buttons">
<div class="button-links">
<div class="button" data-button="1">Button 1</div>
<div class="button" data-button="2">Button 2</div>
<div class="button" data-button="3">Button 3</div>
<div class="button" data-button="4">Button 4</div>
</div>
<div class="info">
<div class="button-info" data-button="1">
<div class="button-info-title">The Race</div>
<div class="button-info-description">
The lobster and the crab one day proposed a friendly race<br>
Agreed upon the time were they, agreed upon the place<br>
<br>
The start and finish lines were where the two thought they should be<br>
The crayfish with a clock was there to act as referee<br>
<br>
And though the rule-book then was read, not all was clarified<br>
For as the lobster forward sped<br>
The crab crab went to the side.<br>
</div>
</div>
<div class="button-info" data-button="2">
<div class="button-info-title">Magic</div>
<div class="button-info-description">
Sandra’s seen a leprechaun,<br>
Eddie touched a troll,<br>
Laurie danced with witches once,<br>
Charlie found some goblins’ gold.<br>
Donald heard a mermaid sing,<br>
Susy spied an elf,<br>
But all the magic I have known<br>
I’ve had to make myself.<br>
</div>
</div>
<div class="button-info" data-button="3">
<div class="button-info-title">Pancakes</div>
<div class="button-info-description">
Who wants a pancake,<br>
Sweet and piping hot?<br>
Good little Grace looks up and says,<br>
“I’ll take the one on top.”<br>
Who else wants a pancake,<br>
Fresh off the griddle?<br>
Terrible Theresa smiles and says,<br>
“I’ll take the one in the middle.”<br>
</div>
</div>
<div class="button-info" data-button="4">
<div class="button-info-title">Bird Soup</div>
<div class="button-info-description">
Birdy Birdy,<br>
In the sky,<br>
What you doing in my eye,<br>
It tastes like sugar,<br>
It feels Like soup,<br>
Oh My God,<br>
It's birdy poop.<br>
</div>
</div>
</div>
</body>
</html>