-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
53 lines (46 loc) · 2.31 KB
/
game.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="card-wraper card-wraper-game">
<div class="logo-wrap">
<div class="logo">
<img src="./asset/436566150_420891967239264_334178107593399051_n.jpg" alt="profile picture" height="200" width="200">
</div>
</div>
<h3 class="heading username">Ash</h3>
<h4 class="heading caption">Long press and copy the text or tap the <i class="bi bi-clipboard"></i> button.</h4>
<div class="link-container" id="link-container">
<div class="link-wrap">
<div class="social-link">
<span class="link-caption">BGMI       5142794354</span>
<button class = "btn copy-btn" onclick="copyText('5142794354'); showCopied();">
<i class="bi bi-clipboard link-icon"></i>
</button>
</div>
</div>
<div class="link-wrap">
<div class="social-link">
<span class="link-caption">PUBG Lite     7187713463</span>
<button class = "btn copy-btn" onclick="copyText('7187713463'); showCopied()">
<i class="bi bi-clipboard link-icon"></i>
</button>
</div>
</div>
<div class = "copied-prompt" id="copied-prompt" style="text-align: center; color: white; font-size: 12px; margin-bottom: 20px;">
Copied to clipboard
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>