-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.html
123 lines (118 loc) · 5.08 KB
/
shop.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!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/shop.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/background.css">
<title>Shopping Impact</title>
</head>
<body>
<canvas id="canvas1" width=400 height=400></canvas>
<script src="js/background.js"></script>
<div class="sticky">
<div id="header">
<div class="navbar-item"><a href="./index.html">Home</a></div>
<div class="navbar-item"><a href="./gacha.html">Gacha</a></div>
<div class="navbar-item"><a href="./promo.html">Promo</a></div>
</div>
</div>
<br>
<br>
<!-- Baris Pertama -->
<div class="line1">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="img/mona.png" alt="Avatar" style="width:100%;height:100%;">
</div>
<div class="flip-card-back">
<h1>MONA</h1>
<div class="star">
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
</div>
<br>
<p class = "card-exp">
An astrologist of great skill and equally-great pride, Mona has
taken up residence in Mondstadt to avoid incurring the wrath of her
master after unwittingly reading the latter's diary.
</p>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<h1>$1000</h1>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="img/hutao.png" alt="Avatar" style="width:100%;height:100%;">
</div>
<div class="flip-card-back">
<h1>HU TAO</h1>
<div class="star">
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
</div>
<br>
<p class = "card-exp">
Hu Tao is the 77th Director of the Wangsheng Funeral Parlor, a person vital to managing Liyue's funerary affairs.
She does her utmost to flawlessly carry out a person's last rites and preserve the world's balance of yin and yang.
Aside from this, she is also a talented poet whose many "masterpieces" have passed around Liyue's populace by word of mouth.
</p>
<h1>$1000</h1>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="img/yoimiya.png" alt="Avatar" style="width:100%;height:100%;">
</div>
<div class="flip-card-back">
<h1>YOIMIYA</h1>
<div class="star">
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
</div>
<br>
<p class = "card-exp">
She is the daughter of Naganohara Ryuunosuke and the current owner of
Naganohara Fireworks. With her colourful fireworks and outgoing personality,
Yoimiya is beloved by everyone on Narukami Island, who state that summer is
not the same without her.
</p>
<br>
<br>
<br>
<br>
<h1>$1000</h1>
</div>
</div>
</div>
</div>
<!-- END -->
<br>
<br>
<div class="announce">
<h1>~ More Soon ~</h1>
</div>
</body>
</html>