mdb-ui-kit/index.html

82 lines
3.1 KiB
HTML
Raw Normal View History

2020-12-17 11:06:16 +03:00
<!DOCTYPE html>
<html lang="en">
2021-03-09 12:08:23 +03:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Material Design for Bootstrap</title>
<!-- MDB icon -->
<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
<!-- Google Fonts Roboto -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" />
<!-- MDB -->
<link rel="stylesheet" href="css/mdb.min.css" />
</head>
<body>
<!-- Start your project here-->
<div class="container">
<div class="d-flex justify-content-center align-items-center" style="height: 100vh;">
<div class="text-center">
<h2>Release surprise! </h2>
<p class="h4 fw-bold">50% OFF MDB PRO</p>
<div class="row justify-content-center">
<div class="col-md-6">
<img src="https://mdbootstrap.com/img/Marketing/campaigns/50off-SJARV.png" class="img-fluid" alt="" />
</div>
2021-03-08 12:13:42 +03:00
</div>
2021-03-09 12:08:23 +03:00
<h5 class="mb-3">Use this coupon code before it expires and claim the reward</h5>
<p class="mb-3">The coupon code will be valid until the end of the week</p>
<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>
2020-12-30 17:27:37 +03:00
</div>
</div>
2017-08-11 17:59:31 +03:00
</div>
2021-03-09 12:08:23 +03:00
<!-- End your project here-->
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Custom scripts -->
<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>
</html>