-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtokyo.html
More file actions
64 lines (58 loc) · 1.92 KB
/
Copy pathtokyo.html
File metadata and controls
64 lines (58 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>image slide</title>
<style type="text/css">
body{
background-color:black;
color:white;
}
.head_box{
border: 1px solid black;
width: 100%;
height: 150px;
}
#text{
font-family: 'Abel', sans-serif;
font-weight:bolder;
text-align:center;
text-transform:uppercase;
font-size:60px;
}
.footer{
border: 1px solid black;
width: 100%;
height: 150px;
font-family: 'Abel', sans-serif;
font-weight:bolder;
text-align:right;
font-size:25px;
}
a:link{color:red;}
a:hover{color:black;}
</style>
<link rel="stylesheet" href="common.css" />
<link rel="stylesheet" href="unit.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="controller.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/TweenMax.min.js"></script>
</head>
<body>
<div class="head_box"><div id="text">tokyo street fashion</div>
</div>
<div class="slide">
<button class="prev" type="button"><img src="left.jpg" alt=""width="30" height="60" />
</button>
<ul>
<li><img src="tok1.jpg" alt="tokyo"height="500" width="450" /> </li>
<li><img src="tok2.jpg" alt="tokyo" height="500" width="450"/></li>
<li><img src="tok3.jpg" alt="tokyo"height="500" width="450"/></li>
<li><img src="tok4.jpg" alt="tokyo"height="500" width="450" /></li>
<li><img src="tok5.jpg" alt="tokyo"height="500" width="450" /></li>
</ul>
<button class="next" type="button"><img src="right.jpg" alt=""width="30" height="60" /></button>
</div>
<div class="footer">copyright-<a href="https://www.hiphoper.com/magazine?page=1">hiphoper magazine</div>
</body>
</html>