-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathstart.html
113 lines (103 loc) · 2.97 KB
/
start.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Free VPS | Start</title>
<meta content='Free VPS' name='twitter:title'>
<meta content='Free VPS' property='og:title'>
<meta content='Get VPS for free. No credit card requird!' property='og:description'>
<meta content='Get VPS for free. No credit card requird!' name='twitter:description'>
<style>
body {
background-color: #f0f0f0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: 'Roboto', sans-serif;
}
h1 {
font-size: 36px;
color: #333;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
margin-bottom: 30px;
}
.btn-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.btn {
display: inline-block;
padding: 10px 20px;
font-size: 18px;
text-align: center;
background-color: #007BFF;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
margin: 10px;
}
.btn:hover {
background-color: #0056b3;
}
.back-btn {
display: inline-block;
padding: 10px 20px;
font-size: 18px;
text-align: center;
background-color: #007BFF;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
margin-top: 20px;
}
.back-btn:hover {
background-color: #0056b3;
}
.social-icon {
width: 40px;
height: 40px;
margin-left: 10px;
cursor: pointer;
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZD8Y83407P"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-ZD8Y83407P');
</script>
</head>
<body>
<iframe data-aa='2302374' src='//ad.a-ads.com/2302374?size=728x90' style='width:728px; height:90px; border:0px; padding:0; overflow:hidden; background-color: transparent;'></iframe>
<h1>Choose this node to Free VPS</h1>
<div class="btn-container">
<a href="node1.html" class="btn">Node 1</a>
</div>
<button onclick="goBack()" class="back-btn">Back</button>
<!-- Social Media Icons -->
<div class="social-icons">
<p></p>
<a href="https://github.com/SLXUniverse/free-vps" target="_blank"><img src="images/Octicons-mark-github.svg.png" alt="GitHub" class="social-icon"></a>
<!-- Add more social media icons as needed -->
</div>
<script>
function goBack() {
window.history.back();
}
</script>
</body>
</html>