-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.25 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Art Gallery</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>CSS Art Gallery</h1>
<p>Explore the beauty of CSS art!</p>
</header>
<main>
<div class="gallery">
<div class="art-piece piece1" data-description="A beautiful gradient art piece."></div>
<div class="art-piece piece2" data-description="A vibrant linear gradient."></div>
<div class="art-piece piece3" data-description="A creative polygon shape."></div>
<div class="art-piece piece4" data-description="A circular gradient art piece."></div>
<div class="art-piece piece5" data-description="An artistic polygon shape."></div>
<div class="art-piece piece6" data-description="An elegant ellipse shape."></div>
</div>
</main>
<div id="lightbox" class="lightbox" style="display: none;">
<span class="close">×</span>
<div class="lightbox-content"></div>
<div class="lightbox-description"></div>
</div>
<script src="script.js"></script>
</body>
</html>