-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (60 loc) · 2.19 KB
/
index.html
File metadata and controls
60 lines (60 loc) · 2.19 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
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset=UTF-8 />
<meta name=viewport content="width=device-width, initial-scale=1.0" />
<meta name="author" content="https://alihasan.ml/">
<link rel=stylesheet href="assets/css/style.css" />
<link rel=stylesheet href="assets/css/swiper.css"/>
<title></title>
</head>
<body>
<div class="swiper mySwiper">
<div class=swiper-wrapper>
<div class=swiper-slide>
<main class="main-section grid-lyout">
<div class=home>
<h1 class=home__title> who <br /> is <br />your <br />mommy😋 </h1>
<div class=wonder-woman-img></div>
</div>
</main>
</div>
<div class=swiper-slide>
<main class="main-section grid-lyout">
<div class=home>
<h1 class=home__title> I <br /> am <br />your <br />mommy😏 </h1>
<div class=black-widow></div>
</div>
</main>
</div>
<div class=swiper-slide>
<main class="main-section grid-lyout">
<div class=home>
<h1 class=home__title> No <br /> your <br />mommy is <br />here😘 </h1>
<div class=wanda></div>
</div>
</main>
</div>
</div>
<div class=swiper-button-next style="border: solid;border-radius: 1em;padding: 1.5em;"></div>
<div class=swiper-button-prev style="border: solid;border-radius: 1em;padding: 1.5em;"></div>
</div>
<script src=https://cdnjs.cloudflare.com/ajax/libs/gsap/3.2.4/gsap.min.js></script>
<script src=https://cdnjs.cloudflare.com/ajax/libs/three.js/108/three.min.js integrity="sha256-3mBEX8I0uMLF7+AUjJeTCelosuorzYpqwBMBPDTyQqY=" crossorigin=anonymous></script>
<script src=assets/js/app.js></script>
<script src="assets/js/transaction.js"></script>
<script src="assets/js/swiper.js"></script>
<script>
var swiper = new Swiper(".mySwiper", {
pagination: {
el: ".swiper-pagination",
type: "fraction"
},
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev"
}
});
</script>
</body>
</html>