-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
142 lines (116 loc) · 5.87 KB
/
index.html
File metadata and controls
142 lines (116 loc) · 5.87 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Galerie d'Art - The Digital Museum</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
</head>
<body>
<div class="global-background"></div>
<main class="landing-container">
<header class="gallery-header">
<h1 class="logo">Galerie d'Art</h1>
<p class="tagline">Explore the World's Masterpieces</p>
</header>
<div class="carousel-wrapper">
<div id="artCarousel" class="art-carousel">
<div class="art-card" data-category="impressionism">
<img src="assets/impressionism.jpg" alt="Impressionism Art">
<h2 class="card-title">Impressionism</h2>
<p class="card-hint">Click to Enter</p>
</div>
<div class="art-card" data-category="baroque">
<img src="assets/baroque.jpg" alt="Baroque Art">
<h2 class="card-title">Baroque</h2>
<p class="card-hint">Click to Enter</p>
</div>
<div class="art-card" data-category="renaissance">
<img src="https://upload.wikimedia.org/wikipedia/commons/e/ec/Mona_Lisa%2C_by_Leonardo_da_Vinci%2C_from_C2RMF_retouched.jpg"
alt="Renaissance Art">
<h2 class="card-title">Renaissance</h2>
<p class="card-hint">Click to Enter</p>
</div>
<div class="art-card" data-category="modern">
<img src="assets/modern.jpg" alt="Modern Art">
<h2 class="card-title">Modern Art</h2>
<p class="card-hint">Click to Enter</p>
</div>
<div class="art-card" data-category="surrealism">
<img src="assets/surrealism.jpg" alt="Surrealism Art">
<h2 class="card-title">Surrealism</h2>
<p class="card-hint">Click to Enter</p>
</div>
<div class="art-card" data-category="cubism">
<img src="assets/cubism.jpg" alt="Cubism Art">
<h2 class="card-title">Cubism</h2>
<p class="card-hint">Click to Enter</p>
</div>
<div class="art-card" data-category="romanticism">
<img src="assets/romanticism.jpg" alt="Romanticism Art">
<h2 class="card-title">Romanticism</h2>
<p class="card-hint">Click to Enter</p>
</div>
<div class="art-card" data-category="realism">
<img src="assets/realism.jpg" alt="Realism Art">
<h2 class="card-title">Realism</h2>
<p class="card-hint">Click to Enter</p>
</div>
<div class="art-card" data-category="popart">
<img src="assets/popart.jpg" alt="Pop Art">
<h2 class="card-title">Pop Art</h2>
<p class="card-hint">Click to Enter</p>
</div>
<div class="art-card" data-category="ukiyoe">
<img src="assets/ukiyoe.jpg" alt="Ukiyo-e Art">
<h2 class="card-title">Ukiyo-e</h2>
<p class="card-hint">Click to Enter</p>
</div>
</div>
</div>
</main>
<section class="content-section" id="about-section">
<div class="content-wrapper">
<h2 class="section-title">L'Origine</h2>
<p class="section-text">
"Galerie d'Art" is not merely a name; it is a homage to the Parisian Salons of the 19th century—the
birthplaces of modern art criticism and appreciation. We strive to recreate that sense of wonder and
discovery in the digital age.
</p>
<p class="section-text">
Where the physical world is limited by walls and gravity, our digital walls stretch infinitely. Here,
the masterpieces of history float in a void of pure creativity, accessible to all who seek beauty.
</p>
</div>
</section>
<section class="content-section" id="philosophy-section">
<div class="content-wrapper reverse-layout">
<div class="text-block">
<h2 class="section-title">La Philosophie</h2>
<p class="section-text">
Art is timeless. It transcends the canvas and the century. Our mission is to liberate these works
from the dusty archives and static textbooks.
</p>
<p class="section-text">
By leveraging cutting-edge 3D technology, we invite you to step *inside* the painting. To see the
brushstrokes of Van Gogh pulse with life, to feel the geometric weight of Cubism. This is art,
re-imagined.
</p>
</div>
</div>
</section>
<footer class="site-footer">
<div class="footer-content">
<h3 class="footer-logo">Galerie d'Art</h3>
<p class="copyright">© 2024 The Digital Museum Project. Curated with passion.</p>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/ScrollTrigger.min.js"></script>
<script src="app.js"></script>
</body>
</html>