-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
177 lines (153 loc) · 5.22 KB
/
index.html
File metadata and controls
177 lines (153 loc) · 5.22 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
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
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- SEO Meta Tags -->
<meta name="description" content="Web DNS Address offers fast, secure, and reliable DNS services for websites and applications. Optimize your site’s performance with our trusted DNS solutions.">
<meta name="keywords" content="DNS services, fast DNS, secure DNS, reliable uptime, DNS hosting, website DNS">
<meta name="author" content="Web DNS Address">
<meta property="og:title" content="Web DNS Address">
<meta property="og:description" content="Optimize your website performance with fast and secure DNS services.">
<meta property="og:image" content="https://www.dnsaddr.com/logo.png">
<meta property="og:url" content="https://web.dnsaddr.com">
<meta name="twitter:card" content="summary_large_image">
<title>Web DNS Address</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<style>
/* Global Styles */
body, html {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
background-color: #f4f4f9;
color: #333;
}
/* Header Section */
header {
background-color: #3c6e71;
color: white;
padding: 50px 20px;
text-align: center;
}
header h1 {
font-size: 2.8em;
margin: 0;
font-weight: 600;
}
header p {
font-size: 1.2em;
margin-top: 10px;
font-weight: 300;
}
/* Main Content Section */
.content {
text-align: center;
padding: 50px 20px;
}
.content h2 {
font-size: 2.2em;
color: #3c6e71;
font-weight: 600;
}
.content p {
font-size: 1.1em;
color: #555;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
}
/* Services Section */
.services {
background-color: #ffffff;
padding: 50px 20px;
display: flex;
justify-content: center;
gap: 50px;
flex-wrap: wrap;
}
.service {
background-color: #e9f1f2;
border: 1px solid #d1d1d1;
padding: 30px;
width: 250px;
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out;
}
.service:hover {
transform: translateY(-10px);
}
.service h3 {
color: #3c6e71;
font-size: 1.5em;
font-weight: 500;
}
.service p {
color: #777;
}
/* Footer Section */
footer {
background-color: #333;
color: white;
text-align: center;
padding: 20px;
font-size: 0.9em;
}
.backlink {
margin-top: 20px;
font-size: 0.9em;
}
/* Button Styles */
.button {
background-color: #6b8e23;
color: white;
padding: 12px 24px;
border: none;
border-radius: 5px;
text-decoration: none;
font-size: 1.1em;
transition: background-color 0.3s;
}
.button:hover {
background-color: #4b6f1b;
}
</style>
</head>
<body>
<!-- Header Section -->
<header>
<h1>Welcome to Web DNS Address</h1>
<p>Optimizing DNS for better performance and security</p>
</header>
<!-- Main Content Section -->
<div class="content">
<h2>Our DNS Services</h2>
<p>At Web DNS Address, we offer high-performance DNS services to ensure your website is fast, secure, and reliable. Whether you're an individual looking to optimize your site or a business needing consistent uptime, we have the solutions to meet your needs.</p>
</div>
<!-- Services Section -->
<div class="services">
<div class="service">
<h3>Fast DNS</h3>
<p>We ensure your website loads faster with our optimized DNS routes, improving performance and user experience.</p>
</div>
<div class="service">
<h3>Secure DNS</h3>
<p>Protect your site from threats with secure DNS services that prevent malicious attacks and keep your data safe.</p>
</div>
<div class="service">
<h3>Reliable Uptime</h3>
<p>With our 99.9% uptime guarantee, we ensure your website is always accessible to users around the world.</p>
</div>
</div>
<!-- Footer Section -->
<footer>
<div class="backlink">
<p>Subdomain sponsored by <a href="https://dnsaddr.com" target="_blank" rel="noopener noreferrer" style="color: #f4f4f9; text-decoration: none;">DNSaddr.com</a></p>
</div>
<p>© 2026 Web DNS Address. All rights reserved.</p>
</footer>
</body>
</html>