-
Notifications
You must be signed in to change notification settings - Fork 1
/
quick_buy.html
76 lines (74 loc) · 2.27 KB
/
quick_buy.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
<!DOCTYPE html>
<html lang="en">
<head>
<!--page icon-->
<link
rel="icon"
type="image/x-icon"
href="assets/img/doge_icon.png"
/>
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<!-- Bootstrap icons-->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css"
rel="stylesheet"
type="text/css"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<!-- Google fonts-->
<link
href="https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic"
rel="stylesheet"
type="text/css"
/>
<style>
.rotate {
animation: rotation 3s infinite linear;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
</style>
</head>
<body>
<header class="bg-primary bg-gradient text-white">
<div class="container">
<!--Notorious did an edit here-->
<h1 class="quick-buy-title"><img src="assets/img/doge_icon_32x32small.png" alt="." class="doge-icon">Buy $DogeMulti from contract<img
src="assets/img/doge_icon_32x32small.png" alt="." class="doge-icon">
</h>
<!--End of notorious edit-->
<p class="lead text-center m-sm-5">
<iframe
width="75%"
height="300"
src="https://www.youtube.com/embed/e11eMHkceBo"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</p>
</div>
<div class="container m-sm-5 text-center">
<a
class="btn btn-lg btn-light py-1"
href="https://bscscan.com/token/0x3c37ab18d0ec386d06dd68e3470e49bfdc0d46e8"
>Go to Smart Contract</a
>
</div>
<div class="container m-sm-5 text-center">
<a class="btn btn-lg btn-light py-1" href="index.html">Back</a>
</div>
</header>
</body>
</html>