-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.html
58 lines (58 loc) · 2.16 KB
/
user.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
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="style.css" rel="stylesheet" />
<script src="js/bootstrap.bundle.min.js"></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
<title>Your Twitter Card</title>
</head>
<body
class="p-4 d-flex flex-row container justify-content-center align-items-center"
>
<div id="loading" class="loading">
<div class="spinner-border text-white" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
<div
class="d-flex flex-column gap-3 shadow rounded p-4 align-items-center card11"
id="datacard"
>
<p class="h4 text-primary" id="twittercard"></p>
<div class="p-3 d-flex flex-column align-items-center">
<div id="username" class="d-flex flex-row gap-1"></div>
<div id="contents" class="d-flex flex-row gap-3 mt-4"></div>
<div class="d-flex flex-row gap-3">
<div
onclick="navigate()"
class="d-flex flex-row gap-1 btn btn-primary mt-4 align-items-center justify-content-center"
>
<i class="bi bi-check-lg"></i>
Follow
</div>
<div onclick="share()"
class="d-flex flex-row gap-1 btn btn-outline-primary mt-4 align-items-center justify-content-center"
>
<i class="bi bi-share"></i>
</div>
</div>
<div class="mt-4">
<a href="index.html" class="btn text-primary h5"
>create you own card?</a
>
</div>
</div>
</div>
<div class="footer text-white p-3 shadow rounded d-flex flex-row gap-1">
created by
<p class="text-primary" onclick="owener()">@abipravi</p>
</div>
</body>
<script src="javascript.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script></script>
</html>