-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathart3.html
More file actions
39 lines (37 loc) · 1.24 KB
/
Copy pathart3.html
File metadata and controls
39 lines (37 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<title>The Persistence of Memory | Art Gallery</title>
<style>
/* Same styling as art1.html */
</style>
</head>
<body>
<div class="container">
<h1>The Persistence of Memory</h1>
<img src="images/art3.jpg" alt="The Persistence of Memory" class="art-image">
<div class="details">
<p><strong>Artist:</strong> Salvador Dalí</p>
<p><strong>Year:</strong> 1931</p>
<p><strong>Description:</strong> Known for its melting clocks, this surrealist painting explores the fluidity of time and the unconscious. It is one of Dalí’s most iconic works.</p>
</div>
<div class="similar">
<h3>Similar Artworks</h3>
<div class="similar-art">
<div class="similar-art-item">
<img src="images/art1.jpg" alt="Starry Night">
<a href="art1.html">Starry Night</a>
</div>
<div class="similar-art-item">
<img src="images/art4.jpg" alt="The Scream">
<a href="art4.html">The Scream</a>
</div>
<div class="similar-art-item">
<img src="images/art5.jpg" alt="Girl with a Pearl Earring">
<a href="art5.html">Girl with a Pearl Earring</a>
</div>
</div>
</div>
</div>
</body>
</html>