mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-14 13:47:11 +03:00
update index.html
This commit is contained in:
parent
9f259507ec
commit
bab7961d44
78
index.html
78
index.html
|
@ -1,5 +1,6 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||||||
|
@ -10,40 +11,77 @@
|
||||||
<!-- Font Awesome -->
|
<!-- Font Awesome -->
|
||||||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
|
||||||
<!-- Google Fonts Roboto -->
|
<!-- Google Fonts Roboto -->
|
||||||
<link
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" />
|
||||||
rel="stylesheet"
|
|
||||||
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"
|
|
||||||
/>
|
|
||||||
<!-- MDB -->
|
<!-- MDB -->
|
||||||
<link rel="stylesheet" href="css/mdb.min.css" />
|
<link rel="stylesheet" href="css/mdb.min.css" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<!-- Start your project here-->
|
<!-- Start your project here-->
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="d-flex justify-content-center align-items-center" style="height: 100vh;">
|
<div class="d-flex justify-content-center align-items-center" style="height: 100vh;">
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<img
|
<h2>Release surprise! </h2>
|
||||||
class="mb-4"
|
<p class="h4 fw-bold">50% OFF MDB PRO</p>
|
||||||
src="https://mdbootstrap.com/img/logo/mdb-transparent-250px.png"
|
<div class="row justify-content-center">
|
||||||
style="width: 250px; height: 90px;"
|
<div class="col-md-6">
|
||||||
/>
|
<img src="https://mdbootstrap.com/img/Marketing/campaigns/50off-SJARV.png" class="img-fluid" alt="" />
|
||||||
<h5 class="mb-3">Thank you for using our product. We're glad you're with us.</h5>
|
</div>
|
||||||
<p class="mb-3">MDB Team</p>
|
</div>
|
||||||
<a
|
|
||||||
class="btn btn-primary btn-lg"
|
|
||||||
href="https://mdbootstrap.com/docs/standard/getting-started/"
|
<h5 class="mb-3">Use this coupon code before it expires and claim the reward</h5>
|
||||||
target="_blank"
|
<p class="mb-3">The coupon code will be valid until the end of the week</p>
|
||||||
role="button"
|
|
||||||
>Start MDB tutorial</a
|
<div class="mt-2">
|
||||||
>
|
|
||||||
|
<!--Coupon code-->
|
||||||
|
<code class="h2 border rounded py-1 px-5 flex-item me-2">T9TTVSQB</code>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
<!--Copy to clipboard-->
|
||||||
|
|
||||||
|
<a id="disc-50" href="#" type="button" class="btn-lg btn-info" style="background-color: #009FE7;">COPY TO
|
||||||
|
CLIPBOARD <i class="far fa-copy ml-2"></i></a>
|
||||||
|
<a class="btn btn-outline-primary btn-lg mt-3" href="https://mdbootstrap.com/docs/standard/getting-started/"
|
||||||
|
target="_blank" style="border-color: #009FE7; color: #009FE7;" role="button">Start MDB tutorial</a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<p>See <a href="https://mdbootstrap.com/pro/">prices</a></p>
|
||||||
|
<div class=" my-2 alert alert-success" id="code-success" style="display: none;">
|
||||||
|
Copied
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- End your project here-->
|
<!-- End your project here-->
|
||||||
|
|
||||||
<!-- MDB -->
|
<!-- MDB -->
|
||||||
<script type="text/javascript" src="js/mdb.min.js"></script>
|
<script type="text/javascript" src="js/mdb.min.js"></script>
|
||||||
<!-- Custom scripts -->
|
<!-- Custom scripts -->
|
||||||
<script type="text/javascript"></script>
|
<script type="text/javascript">
|
||||||
|
var a = document.getElementById('disc-50');
|
||||||
|
a.onclick = function () {
|
||||||
|
Clipboard_CopyTo("T9TTVSQB");
|
||||||
|
var div = document.getElementById('code-success');
|
||||||
|
div.style.display = 'block';
|
||||||
|
setTimeout(function () {
|
||||||
|
document.getElementById('code-success').style.display = 'none';
|
||||||
|
}, 900);
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
function Clipboard_CopyTo(value) {
|
||||||
|
var tempInput = document.createElement("input");
|
||||||
|
tempInput.value = value;
|
||||||
|
document.body.appendChild(tempInput);
|
||||||
|
tempInput.select();
|
||||||
|
document.execCommand("copy");
|
||||||
|
document.body.removeChild(tempInput);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue
Block a user