CoachEug commited on
Commit
79c7ad4
·
verified ·
1 Parent(s): 70b8802

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +122 -19
index.html CHANGED
@@ -1,19 +1,122 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <title>Psychology of Colours</title>
7
+ <style>
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ padding: 20px;
11
+ background-color: #f4f4f4;
12
+ color: #333;
13
+ }
14
+
15
+ h1 {
16
+ text-align: center;
17
+ color: #444;
18
+ }
19
+
20
+ table {
21
+ width: 100%;
22
+ border-collapse: collapse;
23
+ margin-bottom: 40px;
24
+ }
25
+
26
+ th, td {
27
+ border: 1px solid #ccc;
28
+ padding: 12px;
29
+ text-align: center;
30
+ }
31
+
32
+ th {
33
+ background-color: #eee;
34
+ }
35
+
36
+ .color-box {
37
+ width: 40px;
38
+ height: 40px;
39
+ display: inline-block;
40
+ border: 1px solid #ccc;
41
+ border-radius: 4px;
42
+ }
43
+
44
+ .red { background-color: red; }
45
+ .blue { background-color: blue; }
46
+ .yellow { background-color: yellow; }
47
+ .green { background-color: green; }
48
+ .orange { background-color: orange; }
49
+ .purple { background-color: purple; }
50
+
51
+ .summary {
52
+ margin-bottom: 40px;
53
+ line-height: 1.6;
54
+ }
55
+ </style>
56
+ </head>
57
+ <body>
58
+
59
+ <h1>Psychology of Colours</h1>
60
+
61
+ <div class="summary">
62
+ <p>Colours play a crucial role in psychology and health. They influence mood, decision-making, and even physical well-being. People often gravitate toward colours that reflect their inner emotional states or personality traits. Interestingly, preferences for certain colours may also correlate with particular physical or mental health tendencies.</p>
63
+ </div>
64
+
65
+ <h2>Primary Colours</h2>
66
+ <table>
67
+ <tr>
68
+ <th>Colour</th>
69
+ <th>Visual</th>
70
+ <th>Psychological Meaning</th>
71
+ <th>Possible Health Issues Linked to Preference</th>
72
+ </tr>
73
+ <tr>
74
+ <td>Red</td>
75
+ <td><span class="color-box red"></span></td>
76
+ <td>Passion, energy, aggression, excitement</td>
77
+ <td>High stress levels, hypertension, anxiety</td>
78
+ </tr>
79
+ <tr>
80
+ <td>Blue</td>
81
+ <td><span class="color-box blue"></span></td>
82
+ <td>Calmness, trust, logic, serenity</td>
83
+ <td>Depression, introversion, fatigue</td>
84
+ </tr>
85
+ <tr>
86
+ <td>Yellow</td>
87
+ <td><span class="color-box yellow"></span></td>
88
+ <td>Happiness, optimism, creativity</td>
89
+ <td>Mania, impulsivity, digestive issues</td>
90
+ </tr>
91
+ </table>
92
+
93
+ <h2>Secondary Colours</h2>
94
+ <table>
95
+ <tr>
96
+ <th>Colour</th>
97
+ <th>Visual</th>
98
+ <th>Psychological Meaning</th>
99
+ <th>Possible Health Issues Linked to Preference</th>
100
+ </tr>
101
+ <tr>
102
+ <td>Green</td>
103
+ <td><span class="color-box green"></span></td>
104
+ <td>Balance, growth, healing, harmony</td>
105
+ <td>Heart-related issues, emotional dependency</td>
106
+ </tr>
107
+ <tr>
108
+ <td>Orange</td>
109
+ <td><span class="color-box orange"></span></td>
110
+ <td>Enthusiasm, fun, sociability</td>
111
+ <td>Overstimulation, impulsive behavior, insomnia</td>
112
+ </tr>
113
+ <tr>
114
+ <td>Purple</td>
115
+ <td><span class="color-box purple"></span></td>
116
+ <td>Luxury, spirituality, mystery, creativity</td>
117
+ <td>Mental fatigue, emotional sensitivity</td>
118
+ </tr>
119
+ </table>
120
+
121
+ </body>
122
+ </html>