-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
167 lines (167 loc) · 5.24 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><!-- PLACEHOLDER: Your Website Title --></title>
<style>
:root {
--color-1: #FF6B6B; /* Vibrant Red */
--color-2: #4ECDC4; /* Turquoise */
--color-3: #FFD93D; /* Yellow */
--color-4: #6E44FF; /* Purple */
--color-5: #FF8C42; /* Orange */
--background-color: #F7F7F7; /* Light Grey */
--text-color: #2F2F2F; /* Dark Grey */
}
body {
font-family: 'Arial', sans-serif;
background-color: var(--background-color);
color: var(--text-color);
margin: 0;
padding: 0;
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
background-color: var(--color-1);
padding: 20px 0;
position: relative;
overflow: hidden;
}
h1 {
color: var(--background-color);
margin: 0;
text-align: center;
font-size: 2.5em;
text-transform: uppercase;
letter-spacing: 3px;
position: relative;
z-index: 2;
}
nav {
display: flex;
justify-content: center;
margin-top: 20px;
position: relative;
z-index: 2;
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
color: var(--background-color);
text-decoration: none;
font-weight: bold;
text-transform: uppercase;
padding: 5px 10px;
transition: all 0.3s ease;
}
nav ul li a:hover {
background-color: var(--color-3);
color: var(--text-color);
}
main {
margin-top: 40px;
}
section {
margin: 40px 0;
padding: 30px;
background-color: white;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
}
h2 {
color: var(--color-4);
border-bottom: 2px solid var(--color-4);
padding-bottom: 10px;
display: inline-block;
}
.logo {
text-align: center;
margin: 40px 0;
}
.logo img {
max-width: 200px;
filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}
footer {
background-color: var(--color-2);
color: var(--background-color);
text-align: center;
padding: 20px 0;
position: relative;
margin-top: 40px;
}
/* Picasso-inspired shapes */
.shape {
position: absolute;
opacity: 0.7;
}
.circle {
width: 100px;
height: 100px;
border-radius: 50%;
}
.triangle {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid;
}
.rectangle {
width: 150px;
height: 80px;
}
</style>
</head>
<body>
<header>
<div class="shape circle" style="background-color: var(--color-3); top: -30px; left: 10%;"></div>
<div class="shape triangle" style="border-bottom-color: var(--color-2); top: 50px; right: 15%;"></div>
<h1><!-- PLACEHOLDER: Your Website Name --></h1>
<nav>
<ul>
<!-- CUSTOMIZE: Add or remove menu items as needed -->
<li><a href="#section1">Section 1</a></li>
<li><a href="#section2">Section 2</a></li>
</ul>
</nav>
</header>
<main class="container">
<div class="logo">
<!-- PLACEHOLDER: Replace with your logo image -->
<img src="your_logo.png" alt="Your Logo">
</div>
<section id="section1">
<div class="shape rectangle" style="background-color: var(--color-5); top: -20px; right: -30px;"></div>
<h2><!-- PLACEHOLDER: Section 1 Title --></h2>
<p><!-- PLACEHOLDER: Section 1 description --></p>
<!-- PLACEHOLDER: Add your content for Section 1 here -->
</section>
<section id="section2">
<div class="shape circle" style="background-color: var(--color-4); bottom: -30px; left: -30px;"></div>
<h2><!-- PLACEHOLDER: Section 2 Title --></h2>
<p><!-- PLACEHOLDER: Section 2 description --></p>
<!-- PLACEHOLDER: Add your content for Section 2 here -->
</section>
</main>
<footer>
<div class="shape triangle" style="border-bottom-color: var(--color-1); top: -50px; left: 20%;"></div>
<p>© <!-- PLACEHOLDER: Current Year --> <!-- PLACEHOLDER: Your Copyright Information --></p>
</footer>
</body>
</html>