-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
136 lines (112 loc) · 3.67 KB
/
index.html
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
<!DOCTYPE html>
<title>Paul Dowling Art</title>
<html lang="en-GB">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100&display=swap" rel="stylesheet">
<link href = "style.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<a class="bio" href = "bio">Bio</a>
<a class = "fa" href = "featured">Featured artists</a>
<j class="links">
<a href=https://www.instagram.com/paulmdowling/ target="_blank"> Instagram</a>
- paul@mindstream-ai.com - 07810155810
</j>
<h1>
Paul Dowling
</h1>
<div class="slideshow-container">
<div class="mySlides fade">
<img src="img10.jpg" alt="picture8">
<figcaption>Work #21.10 Acrylic on canvas 100cm x 100cm £POA</figcaption>
</div>
<div class="slideshow-container">
<div class="mySlides fade">
<img src="img11.jpg" alt="picture8">
<figcaption>Work #21.11 Acrylic on canvas 100cm x 100cm £POA</figcaption>
</div>
<div class="slideshow-container">
<div class="mySlides fade">
<img src="img8.jpg" alt="picture8">
<figcaption>Work #21.8 Acrylic on canvas 122cm x91 cm £POA</figcaption>
</div>
<div class="mySlides fade">
<img src="img1.jpg" alt="picture1">
<figcaption>Work #21.1
Acrylic on canvas
100cm x 100cm
£1250 </figcaption>
</div>
<div class="mySlides fade">
<img src="img2.jpg" alt="picture2">
<figcaption>Work #21.2 Acrylic on canvas 91cm x 122cm £1100</figcaption>
</div>
<div class="mySlides fade">
<img src="img3.jpg" alt="picture3">
<figcaption>Work #21.3 Acrylic on canvas 100cm x 100cm £1230</figcaption>
</div>
<div class="mySlides fade">
<img src="img4.jpg" alt="picture4">
<figcaption>Work #21.4 Acrylic on canvas 76cm x 76cm £750</figcaption>
</div>
<div class="mySlides fade">
<img src="img5.jpg" alt="picture5">
<figcaption>Work #21.5 acrylic on canvas 100cm x 100cm £ 950</figcaption>
</div>
<div class="mySlides fade">
<img src="img6.jpg" alt="picture6">
<figcaption>Work #21.6 Acrylic on canvas 100cm x 100cm £1100</figcaption>
</div>
<div class="mySlides fade">
<img src="img7.jpg" alt="picture7">
<figcaption>Work #21.7 Acrylic on canvas 100cm x 100cm £1050</figcaption>
</div>
<div class="mySlides fade">
<img src="img9.jpg" alt="picture7">
<figcaption>Work #21.9 Acrylic on canvas 171 cm x 136 cm £2,500</figcaption>
</div>
<div class="mySlides fade">
<img src="img12.jpg" alt="picture7">
<figcaption>Work #21.12 Acrylic on canvas 100cm x 100cm £POA
</figcaption>
</div>
<div class="mySlides fade">
<img src="img13.jpg" alt="picture7">
<figcaption>Work #21.13 Acrylic on canvas 100cm x 100cm £POA
</figcaption>
</div>
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
<br>
<script>
var slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("dot");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slides[slideIndex-1].style.display = "block";
}
document.addEventListener('keydown', (e) => {
if (e.keyCode === 39) plusSlides(1);
if (e.keyCode === 37) plusSlides(-1)
});
</script>
</body>
</html>