-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (65 loc) · 2.69 KB
/
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
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
<!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" />
<link rel="stylesheet" href="./css/loading.css" />
<link rel="stylesheet" href="./css/media.css" />
<link rel="icon" href="../image/logolol.png">
<title>League of Legends</title>
</head>
<body>
<main class="loading-phone">
<!--start loading page -->
<section class="loading">
<h1 class="title-loading">welcome</h1>
<img class="logo-img" src="./image/landing page.png" alt="" />
<img class="loading-img-gif" src="./image/lodding.gif" alt="" />
</section>
<!-- end loading page -->
<!-- start slider -->
<section class="slideshow-container">
<div class="mySlides fade">
<img src="./image/1.png" style="width: 100%" />
</div>
<div class="mySlides fade">
<img src="./image/2.png" style="width: 100%" />
</div>
<div class="mySlides fade">
<img src="./image/3.png" style="width: 100%" />
</div>
<div class="mySlides fade">
<img src="./image/4.png" style="width: 100%" />
</div>
<div class="arrow-btn">
<a class="prev" onclick="plusSlides(-1)"><i class="fa-solid fa-arrow-left"></i
></a>
<a class="next" onclick="plusSlides(1)"><i class="fa-solid fa-arrow-right"></i
></a>
</div>
<div class="div-btn-slider">
<button class="cont-btn slider-btn"> <a href="./HomePage/home.html" >Continue</a></button>
</div>
<div class="dots" style="text-align: center">
<span class="dot dot1" onclick="currentSlide(1)"></span>
<span class="dot dot2" onclick="currentSlide(2)"></span>
<span class="dot dot3" onclick="currentSlide(3)"></span>
<span class="dot dot4 " onclick="currentSlide(4)"></span>
</div>
</section>
</main>
<main class="loading-disktop">
<div class="center">
<div class="div-loading-video">
<video class="loading-video" autoplay muted loop>
<source src="./image/video.webm" type="video/webm" />
</video>
</div>
<button class="cont-btn dektop-btn"> <a href="./HomePage/home.html" >Continue</a></button>
</div>
</main>
<script src="https://kit.fontawesome.com/872a0c00b6.js" crossorigin="anonymous"></script>
<script src="js/main.js"></script>
</body>
</html>