-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
164 lines (143 loc) · 4.41 KB
/
index.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>sunbank.io - Premium Domain For Sale Directly by Owner</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary-color: #f4b41a;
--secondary-color: #143d59;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
.header {
text-align: center;
padding: 4rem 0;
}
.domain-name {
font-size: 4rem;
color: var(--secondary-color);
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.tagline {
font-size: 1.5rem;
color: #666;
margin-bottom: 2rem;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin: 4rem 0;
}
.feature {
background: white;
padding: 2rem;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.feature:hover {
transform: translateY(-5px);
}
.feature i {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 1rem;
}
.feature h3 {
color: var(--secondary-color);
margin-bottom: 1rem;
}
.cta {
text-align: center;
padding: 4rem 0;
}
.cta-button {
display: inline-block;
padding: 1rem 2rem;
font-size: 1.2rem;
background-color: var(--primary-color);
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
margin: 1rem;
}
.cta-button:hover {
background-color: #e3a615;
}
.footer {
text-align: center;
padding: 2rem;
color: #666;
}
@media (max-width: 768px) {
.domain-name {
font-size: 3rem;
}
.tagline {
font-size: 1.2rem;
}
.features {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="container">
<header class="header">
<h1 class="domain-name">sunbank.io</h1>
<p class="tagline">Premium Domain Name For Sale</p>
<p style="color: #666; font-size: 1.1rem;">Registered since 2020</p>
</header>
<div class="features">
<div class="feature">
<i class="fas fa-globe"></i>
<h3>Perfect for FinTech</h3>
<p>Ideal domain for digital banking, financial services, or blockchain projects.</p>
</div>
<div class="feature">
<i class="fas fa-check-circle"></i>
<h3>Memorable</h3>
<p>Short, catchy, and easy to remember. Perfect for building a strong brand.</p>
</div>
<div class="feature">
<i class="fas fa-shield-alt"></i>
<h3>Premium TLD</h3>
<p>.io domains are highly valued in the tech industry and startup world.</p>
</div>
</div>
<div class="cta">
<h2>Interested in acquiring this domain?</h2>
<p>Contact us to discuss the purchase:</p>
<a href="mailto:daniel@needwin.com" class="cta-button">
<i class="fas fa-envelope"></i> Make an Offer
</a>
</div>
<footer class="footer">
<p> 2023 All rights reserved.</p>
</footer>
</div>
</body>
</html>