-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
25 lines (25 loc) · 982 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>HTMLslyde by Shakeel Mohamed</title>
<link rel="stylesheet" type="text/css" href="styles.css" >
</head>
<body>
<div id="slide1" class="slide">
<a href="#slide2">Go to Slide 2<br />Any size of content can be here.<br>Yes, any size of content can be here.<br><img src="https://placekitten.com/200/250" alt=""><br />It will always be centered vertically and horizontally.</a>
<p>Any size of content can be added here too.</p>
</div>
<div id="slide2" class="slide slideBottom">
<a href="#slide3">Go to Slide 3. SLIDE BOTTOM</a>
</div>
<div id="slide3" class="slide slideRight">
<a href="#slide4">Go to Slide 4. SLIDE RIGHT</a>
</div>
<div id="slide4" class="slide slideSquash">
<a href="#slideEnd">End the slideshow. SLIDE SQUASH</a>
</div>
<div id="slideEnd" class="slide slideSquash">
<span>End of slideshow. SLIDE SQUASH</span>
</div>
</body>
</html>