-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
300 lines (258 loc) · 6.07 KB
/
index.html
File metadata and controls
300 lines (258 loc) · 6.07 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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dit-IP-Info CLI Tool</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;}
/* styles.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
.navbar {
background-color: #333;
padding: 1rem;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}
.navbar .logo {
color: #fff;
font-size: 1.5rem;
text-decoration: none;
}
.navbar .nav-links {
list-style: none;
display: flex;
}
.navbar .nav-links li {
margin-left: 1rem;
}
.navbar .nav-links a {
color: #fff;
text-decoration: none;
padding: 0.5rem 1rem;
transition: background-color 0.3s ease;
}
.navbar .nav-links a:hover {
background-color: #555;
border-radius: 5px;
}
.hero {
background: url('bg.png') no-repeat center center/cover;
color: #fff;
text-align: center;
padding: 10rem 1rem;
position: relative;
}
.hero .container {
position: relative;
z-index: 1;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.5rem;
margin-bottom: 2rem;
}
.hero .btn {
background-color: #007BFF;
color: #fff;
padding: 0.75rem 1.5rem;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.hero .btn:hover {
background-color: #0056b3;
}
.lookup {
padding: 5rem 1rem;
text-align: center;
}
.lookup h2 {
margin-bottom: 2rem;
}
.lookup form {
display: flex;
justify-content: center;
align-items: center;
}
.lookup input {
padding: 0.5rem;
font-size: 1rem;
margin-right: 0.5rem;
width: 300px;
}
.lookup button {
padding: 0.5rem 1rem;
font-size: 1rem;
background-color: #007BFF;
color: #fff;
border: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.lookup button:hover {
background-color: #0056b3;
}
/* styles.css */
#features {
padding: 5rem 1rem;
background-color: #f4f4f4;
text-align: center;
}
#features .container {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
#features .card {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
padding: 2rem;
margin: 1rem;
flex: 1;
transition: transform 0.3s ease, box-shadow 0.3s ease;
max-width: 30%;
}
#features .card h2 {
margin-bottom: 1rem;
font-size: 1.75rem;
color: #333;
}
#features .card p,
#features .card ul {
font-size: 1rem;
color: #555;
margin-bottom: 1rem;
text-align: left;
}
#features .card ul {
list-style-type: disc;
padding-left: 1.5rem;
}
#features .card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
#features .container {
flex-direction: column;
align-items: center;
}
#features .card {
max-width: 80%;
margin: 1rem 0;
}
}
footer {
background-color: #333;
color: #fff;
padding: 2rem 1rem;
text-align: center;
}
footer a {
color: #007BFF;
text-decoration: none;
transition: color 0.3s ease;
}
footer a:hover {
color: #0056b3;
}
@media (max-width: 768px) {
.navbar .nav-links {
flex-direction: column;
align-items: flex-start;
}
.navbar .nav-links li {
margin: 0.5rem 0;
}
.cards {
flex-direction: column;
align-items: center;
}
.card {
width: 80%;
margin-bottom: 2rem;
}
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<div class="container">
<a href="#" class="logo"> <img src="ip.png" width="40px" alt="Hero Image" class="hero-img">
IP Info Tool</a>
<ul class="nav-links">
<li><a href="#hero">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#footer">Download</a></li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<section id="hero" class="hero">
<div class="container">
<h1>Welcome to the IP Info Lookup Tool</h1>
<p>Retrieve detailed information about any IP address with ease.</p>
<a href="#features" class="btn">Learn More</a>
</div>
</section>
<!-- Features Section -->
<section id="features" class="cards">
<div class="container">
<div class="card">
<h2>Feature 1</h2>
<ul>
<li>Get your IP address.</li>
<li>Retrieve detailed information about any IP address.</li>
<li>Information about the Developer.</li>
</ul>
</div>
<div class="card">
<h2>Feature 2</h2>
<ul>
<li>Ping an IP address.</li>
<li>Get the IP address of a website.</li>
<li>Get your local IP address.</li>
</ul>
</div>
<div class="card">
<h2>Feature 3</h2>
<ul>
<li>Perform an Nmap scan on an IP address.</li>
<li>Perform web application enumeration.</li>
<li>Easy to use and integrate into your workflow.</li>
</ul>
</div>
</div>
<div class="download">
<p style="font-size: larger;">Download the tool from <a href="https://github.com/Dit-Developers/Dit-IP-Info-cli">GitHub</a></p>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="container">
<a href="https://msue.vercel.app">©Dit-Developers</a>
</div>
</footer> <!-- ©Dit-Developers -->
</body>
</html>