-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathzero.html
42 lines (42 loc) · 873 Bytes
/
zero.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
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="utf-8" />
<title>tutorial DIY slideshow</title>
<style type="text/css">
#slides{
list-style-type: none;
}
.slide{
width: 200px;
height: 200px;
border: 1px solid #000;
}
</style>
</head>
<body>
<div id="slideshow" >
<p>
<button id="slideanterior" class="slideshow-button" >anterior </button>
<button id="slideproximo" class="slideshow-button" > próximo</button>
</p>
<ul id="slides">
<li class="slide">
1
</li>
<li class="slide">
2
</li>
<li class="slide">
3
</li>
<li class="slide">
4
</li>
<li class="slide">
5
</li>
</ul>
</div><!-- fim slideshow -->
</body>
</html>