-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpointsStore.html
More file actions
47 lines (46 loc) · 1.94 KB
/
pointsStore.html
File metadata and controls
47 lines (46 loc) · 1.94 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Membership Upgrade</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="./css/pointsStore.css">
<link rel="stylesheet" href="./css/registerLogin.css">
<link rel="stylesheet" href="./css/headerBar.css">
<link rel="stylesheet" href="./css/letterRain.css">
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
<script src="./js/insertHeader.js"></script>
<script src="./js/insertForm.js"></script>
<script src="./js/loginModal.js" defer></script>
<script src="./js/letterRain.js" defer></script>
</head>
<body>
<div class="container">
<h3 id="title">解锁全面编程学习体验!</h3>
<p id="subtitle">立即升级,获得更多项目实战、深入教程与专属技术支持。</p>
<div class="price-cards">
<div class="price-card">
<h3>月度订阅</h3>
<p>适合短期学习</p>
<h4 class="price">$49</h4>
<button class="btn-primary">立即订阅</button>
</div>
<div class="price-card">
<h3>年度订阅</h3>
<p>享6.8折优惠,适合长期学习,最高性价比</p>
<h4 class="price">$399</h4>
<button class="btn-primary">立即订阅</button>
</div>
<div class="price-card">
<h3>终身订阅</h3>
<p>一次购买,终身享受所有功能</p>
<h4 class="price">$599</h4>
<button class="btn-primary">立即订阅</button>
</div>
</div>
</div>
</body>
</html>