This repository has been archived by the owner on Aug 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompetitions.html
93 lines (86 loc) · 3.21 KB
/
competitions.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Competitions</title>
<link href="assets/images/logo-white.png" rel="icon" type="image/x-icon" />
<link href="styles/competitions.css" rel="stylesheet" type="text/css" />
<link href="styles/global.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header-template></header-template>
<p style="text-align: center; font-size: xx-large; font-weight: bold">Competitions</p>
<p class="border">Inti Nilai Friendly Match </p>
<div class="slideshow-container">
<div class="mySlides1">
<img alt="" src="assets/images/EventPhoto/Inti%20Nilai%20Friendly%20Match%202017/Inti%20Nilai%20Friendly%20Match%202017%20(14).jpg" style="width: 100%" />
</div>
<div class="mySlides1">
<img alt="" src="assets/images/EventPhoto/Inti%20Nilai%20Friendly%20Match%202017/Inti%20Nilai%20Friendly%20Match%202017%20(24).jpg" style="width: 100%" />
</div>
<div class="mySlides1">
<img alt="" src="assets/images/EventPhoto/Inti%20Nilai%20Friendly%20Match%202017/Inti%20Nilai%20Friendly%20Match%202017%20(16).jpg" style="width: 100%" />
</div>
<a class="prev" onclick="plusSlides(-1, 0)">❮</a>
<a class="next" onclick="plusSlides(1, 0)">❯</a>
<br/>
<button class="button" onclick="document.location='intinilaifriendlymatch.html'" style="left: 400px">
<span>See More</span>
</button>
</div>
<br/>
<p class="border">Friendly Match</p>
<div class="slideshow-container">
<div class="mySlides2">
<img alt="" src="assets/images/EventPhoto/Friendly%20Match/friendlyMatch%20(1).jpg" style="width: 100%" />
</div>
<div class="mySlides2">
<img alt="" src="assets/images/EventPhoto/Friendly%20Match/friendlyMatch%20(12).jpg" style="width: 100%" />
</div>
<div class="mySlides2">
<img alt="" src="assets/images/EventPhoto/Friendly%20Match/friendlyMatch%20(23).jpg" style="width: 100%" />
</div>
<a class="prev" onclick="plusSlides(-1, 1)">❮</a>
<a class="next" onclick="plusSlides(1, 1)">❯</a>
<br/>
<button class="button" onclick="document.location='friendlymatch.html'" style="left: 400px">
<span>See More</span>
</button>
</div>
<br/>
<footer-template></footer-template>
<script src="scripts/global.js"></script>
<script>
function myFunction() {
var txt;
if (confirm('Confirm to Subscribe Our Newsletter?')) {
txt = 'You pressed OK!';
} else {
txt = 'You pressed Cancel!';
}
document.getElementById('subscribe').innerHTML = txt;
}
var slideIndex = [1, 1];
var slideId = ['mySlides1', 'mySlides2'];
showSlides(1, 0);
showSlides(1, 1);
function plusSlides(n, no) {
showSlides((slideIndex[no] += n), no);
}
function showSlides(n, no) {
var i;
var x = document.getElementsByClassName(slideId[no]);
if (n > x.length) {
slideIndex[no] = 1;
}
if (n < 1) {
slideIndex[no] = x.length;
}
for (i = 0; i < x.length; i++) {
x[i].style.display = 'none';
}
x[slideIndex[no] - 1].style.display = 'block';
}
</script>
</body>
</html>