-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (56 loc) · 2.57 KB
/
Copy pathindex.html
File metadata and controls
61 lines (56 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="JS/main.js" defer></script>
<link rel="stylesheet" type="text/css" href="CSS/main.css" />
<title>Countdown Slideshow - (Steps 171 - 174)</title>
</head>
<body>
<!-- This code is for the COUNTDOWN, not the SLIDESHOW
<p>How many seconds would you like to set your alarm for?</p>
<input id="seconds" value="" />
<button onClick="countdown()">Click here</button>
<p id="timer"></p> -->
<!-------------------------------------------------------->
<h1>HYPER-REALISTIC DRAWINGS</h1>
<h3>in Color, Black-&-White, & Greyscale</h3>
<!-- Slideshow container -->
<div class="slideshow-container">
<!-- Full-width images with number and caption text -->
<div class="mySlides fade">
<div class="numbertext">1 / 4</div>
<img src="Images/img1.jpg" style="width: 100%" alt="Color drawing of a crumpled, $1 dollar bill"/>
<div class="text">Color drawing of a crumpled, $1 dollar bill</div>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 4</div>
<img src="Images/img2.jpg" style="width: 100%" alt="Black-&-white closeup drawing of a human eye" />
<div class="text">Black-&-white closeup drawing of a human eye</div>
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 4</div>
<img src="Images/img3.jpg" style="width: 100%" alt="Grayscale drawing of a Seiko watch; the actual watch is ni picture's bottom-left corner for reference"/>
<div class="text">Grayscale drawing of a Seiko watch<br>(actual watch included for reference)</div>
</div>
<div class="mySlides fade">
<div class="numbertext">4 / 4</div>
<img src="Images/img4.jpg" style="width: 100%" alt="Color drawaing of a cracked egg's shell & yoke">
<div class="text">Color drawing of a cracked egg's shell & yoke</div>
</div>
<!-- Next and previous buttons -->
<a class="prev" onClick="plusSlides(-1)">❮</a>
<a class="next" onClick="plusSlides(1)">❯</a>
</div>
<br>
<!-- The dots/circles -->
<div style="text-align:center">
<span class="dot" onClick="currentSlide(1)"></span>
<span class="dot" onClick="currentSlide(2)"></span>
<span class="dot" onClick="currentSlide(3)"></span>
<span class="dot" onClick="currentSlide(4)"></span>
</div>
</body>
</html>