-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSuccess.html
More file actions
37 lines (28 loc) · 886 Bytes
/
Success.html
File metadata and controls
37 lines (28 loc) · 886 Bytes
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
<html>
<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">
<title>Document</title>
<link rel="stylesheet" href="./styles/success.css">
</head>
<body>
<img id="buy-bg"
src="https://c4.wallpaperflare.com/wallpaper/1017/842/358/tv-banshee-breaking-bad-vikings-wallpaper-preview.jpg"
alt="">
<div id="success-box">
<div class="card">
<div style="border-radius:200px; height:200px; width:200px; background: #F8FAF5; margin:0 auto;">
<i class="checkmark">✓</i>
</div>
<h1 id="success">Success</h1>
<p id="s-msg">You buy premium plan successfully;<br />Now,You can watch premium videos</p>
</div>
</div>
</body>
</html>
<script>
setTimeout(() => {
window.location.href = "./index.html"
},5000);
</script>