forked from GrazewalSingh07/Coursera_Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConfirmBuyNow.html
76 lines (70 loc) · 2.16 KB
/
ConfirmBuyNow.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>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link rel="stylesheet" href="./style/ConfirmBuyNow.css" />
<link rel="stylesheet" href="../style/footer.css" />
<title>Confirm Buy Now</title>
</head>
<body>
<!-- navbar top -->
<div class="top-nav">
<div class="logo-for-business">
<a href="forEnterPrises.html">
<img
src="https://www.coursera.org/business/wp-content/themes/c4b-2.0.5/images/logos/c4b-h-blue.svg"
alt=""
/></a>
</div>
<div class="nav-items">
<ul>
<a href="forEnterPrises.html"><li>Home</li></a>
<hr />
<li>Product</li>
<hr />
<li>content</li>
<hr />
<li>Compare Plans</li>
<hr />
<li>Resources</li>
<hr />
<li>Blog</li>
</ul>
</div>
</div>
<div class="confirm-buy">
<h1>
Are you purchasing Coursera for Business for a team or smaller
organization?
</h1>
<p>
Empower employees to master new skills with unlimited access to our
catalog for $319/user/year. A 14-day refund guarantee is included.
</p>
<button id="buy-now">Buy Now</button>
<p>
If you're purchasing for a larger organization or need analytics,
integrations, and customer support that drives success, please contact
us at
<a href="[email protected]">[email protected]</a> for a custom
solution.
</p>
</div>
<!-- footer part -->
<div class="footer" id="footer_div"></div>
</body>
</html>
<script type="module">
document.getElementById("buy-now").addEventListener("click", () => {
window.location.href = "./team.html";
});
import { Minifooter } from "../components/footer.js";
let footerDiv = document.getElementById("footer_div");
footerDiv.innerHTML = Minifooter();
</script>