-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathart1.html
More file actions
106 lines (90 loc) · 2.24 KB
/
art1.html
File metadata and controls
106 lines (90 loc) · 2.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
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
<!DOCTYPE html>
<html>
<head>
<title>Starry Night | Art Gallery</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #fdfdfd;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 40px auto;
padding: 20px;
}
h1 {
text-align: center;
margin-bottom: 20px;
}
.art-image {
width: 100%;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.details {
margin-top: 20px;
}
.details p {
margin: 5px 0;
}
.similar {
margin-top: 40px;
}
.similar h3 {
margin-bottom: 15px;
}
.similar-art {
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.similar-art-item {
width: 180px;
text-align: center;
}
.similar-art-item img {
width: 100%;
border-radius: 6px;
}
.similar-art-item a {
display: block;
margin-top: 5px;
color: #007BFF;
text-decoration: none;
}
.similar-art-item a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Starry Night</h1>
<img src="images/art1.jpg" alt="Starry Night" class="art-image">
<div class="details">
<p><strong>Artist:</strong> Vincent van Gogh</p>
<p><strong>Year:</strong> 1889</p>
<p><strong>Description:</strong> "The Starry Night" is one of the most recognized paintings in the history of Western culture. It depicts a swirling night sky filled with stars above a small town and cypress trees.</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/art5.jpg" alt="Girl with a Pearl Earring">
<a href="art5.html">Girl with a Pearl Earring</a>
</div>
<div class="similar-art-item">
<img src="images/art4.jpg" alt="The Scream">
<a href="art4.html">The Scream</a>
</div>
</div>
</div>
</div>
</body>
</html>