-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathart4.html
More file actions
39 lines (37 loc) · 1.21 KB
/
art4.html
File metadata and controls
39 lines (37 loc) · 1.21 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 Scream | Art Gallery</title>
<style>
/* Same styling as art1.html */
</style>
</head>
<body>
<div class="container">
<h1>The Scream</h1>
<img src="images/art4.jpg" alt="The Scream" class="art-image">
<div class="details">
<p><strong>Artist:</strong> Edvard Munch</p>
<p><strong>Year:</strong> 1893</p>
<p><strong>Description:</strong> This iconic expressionist piece portrays a figure against a turbulent sky, symbolizing anxiety and existential dread. One of the most recognizable images in art history.</p>
</div>
<div class="similar">
<h3>Similar Artworks</h3>
<div class="similar-art">
<div class="similar-art-item">
<img src="images/art3.jpg" alt="The Persistence of Memory">
<a href="art3.html">The Persistence of Memory</a>
</div>
<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/art2.jpg" alt="Mona Lisa">
<a href="art2.html">Mona Lisa</a>
</div>
</div>
</div>
</div>
</body>
</html>