-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
201 lines (175 loc) · 5.04 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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="ArtInsite - A Curated Collection of Modern Art">
<script src="js/script.js" async></script>
<meta id="ZwSg9rf6GA" data-dnt="false" data-host="https://yourinsiteserverside-gdd3afe5awgscnak.westeurope-01.azurewebsites.net">
<title>ArtInsite - Explore Modern Art Collections</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Manrope:300,500,700|DM+Sans:400,500,700|Work+Sans:300,500,700" rel="stylesheet">
<style>
body {
font-family: 'Open Sans', sans-serif;
margin: 0;
padding: 0;
background-color: #f8f9fa;
color: #333;
}
header {
background-color: #333;
padding: 1rem 0;
color: white;
text-align: center;
position: relative;
}
header h1 {
margin: 0;
font-size: 2.5rem;
font-weight: 600;
}
header p {
margin: 0.5rem 0 1rem;
font-size: 1.2rem;
}
/* Visit Gallery Button */
.visit-btn {
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
background-color: #ffc107;
padding: 0.5rem 1rem;
color: #333;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
}
.hero {
background-color: #444;
padding: 4rem 1rem;
text-align: center;
color: white;
}
.hero h2 {
font-size: 3rem;
font-weight: 700;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.25rem;
margin-bottom: 2rem;
}
.hero a {
background-color: #ffc107;
padding: 0.75rem 1.5rem;
color: #333;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
}
.features {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin: 3rem 0;
padding: 0 2rem;
}
.feature {
background-color: white;
border-radius: 5px;
padding: 2rem;
width: 30%;
margin-bottom: 2rem;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
.feature h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
font-weight: 600;
}
.feature p {
font-size: 1rem;
color: #666;
}
.cta {
background-color: #444;
color: white;
text-align: center;
padding: 2rem;
}
.cta h2 {
font-size: 2rem;
margin-bottom: 1rem;
}
.cta a {
background-color: #ffc107;
padding: 0.75rem 1.5rem;
color: #333;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1rem;
}
footer p {
margin: 0;
}
@media (max-width: 768px) {
.features {
flex-direction: column;
align-items: center;
}
.feature {
width: 80%;
}
/* Adjust visit button for smaller screens */
.visit-btn {
position: static;
transform: none;
margin-top: 1rem;
}
}
</style>
</head>
<body>
<header>
<h1>ArtInsite</h1>
<p>Discover a Curated Collection of Modern Art</p>
<!-- Visit Gallery Button -->
<a href="gallery.html" class="visit-btn">Visit Gallery</a>
</header>
<section class="hero">
<h2>Explore Modern Art</h2>
<p>Dive into a world of art, where creativity meets innovation.</p>
<a href="#explore">Explore Now</a>
</section>
<section class="features">
<div class="feature">
<h3>Exquisite Paintings</h3>
<p>Featuring a diverse range of works from world-renowned painters.</p>
</div>
<div class="feature">
<h3>Sculptures</h3>
<p>Admire detailed sculptures that blend tradition with modern design.</p>
</div>
<div class="feature">
<h3>Art Installations</h3>
<p>Immerse yourself in interactive art installations that challenge your perception.</p>
</div>
</section>
<section class="cta" id="explore">
<h2>Ready to Explore?</h2>
<p>Browse our curated collections and find your inspiration.</p>
<a href="#signup">Start Exploring</a>
</section>
<footer>
<p>© 2024 ArtInsite. All Rights Reserved.</p>
</footer>
</body>
</html>