-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
160 lines (144 loc) · 8.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>IP Finder</title>
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600&family=Nunito:wght@600;700;800&display=swap" rel="stylesheet">
<!-- Icon Font Stylesheet -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div class="container-fluid position-relative p-0">
<nav class="navbar navbar-expand-lg navbar-light px-4 px-lg-5 py-3 py-lg-0">
<a href="" class="navbar-brand p-0">
<h1 class="text-primary m-0"><i class="fa-solid fa-globe"></i> IP Finder</h1>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="fa fa-bars"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ms-auto py-0">
<a href="#" class="nav-item nav-link active">Home</a>
<a href="#ip" class="nav-item nav-link">IP info</a>
<a href="#api" class="nav-item nav-link">IP-API</a>
<a href="#about" class="nav-item nav-link">About</a>
</div>
</div>
</nav>
<div class="container-fluid bg-primary py-5 mb-5 nav-header" >
<div class="container py-5">
<div class="row justify-content-center py-5">
<div class="col-lg-10 mt-lg-5 text-center">
<h1 class="display-3 text-white mb-3 animated slideInDown">IP Finder</h1>
<p class="fs-4 text-white mb-4 animated slideInDown">Get IP Address, Domain Location and other information from URL. <br>
If you don't entry a query the current IP address will be used.</p>
<div class="position-relative w-75 mx-auto animated slideInDown">
<form id="form">
<input id="search" class="form-control border-0 rounded-pill w-100 py-3 ps-4 pe-5" type="text" placeholder="Enter URL or IP Address">
<button type="submit" class="btn btn-primary rounded-pill py-2 px-4 position-absolute top-0 end-0 me-2" style="margin-top: 7px;">Search</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container-xxl py-5">
<div class="container">
<div class="row g-5">
<div class="col-lg-2"></div>
<div class="col-lg-10 result wow fadeInUp" id="result" data-wow-delay="1s" >
</div>
</div>
</div>
</div>
<div class="container-xxl py-5" id="ip">
<div class="container">
<div class="row g-5">
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.1s" style="min-height: 400px;">
<div class="position-relative h-100">
<img class="img-fluid position-absolute w-100 h-100" src="img/about.jpg" alt="" style="object-fit: cover; border-radius: 25px;border: 3px solid white;">
</div>
</div>
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.3s">
<h1 class="mb-4 text-light">What can an IP address reveal</h1>
<p class="mb-4">Every computer has an IP Address which is a unique address that is used to identify computers or nodes on the internet.</p>
<div class="row gy-2 gx-4 mb-4">
<div class="col-sm-6">
<p class="mb-0"><i class="fa-solid fa-fingerprint text-primary me-2"></i>Identity</p>
Owner information and other details
</div>
<div class="col-sm-6">
<p class="mb-0"><i class="fa-solid fa-network-wired text-primary me-2"></i>ISP</p>
ISP details and network configuration
</div>
<div class="col-sm-6">
<p class="mb-0"><i class="fa-solid fa-location-dot text-primary me-2"></i>Location</p>
City, State, Country, Latitude and Longitute
</div>
<div class="col-sm-6">
<p class="mb-0"><i class="fa-solid fa-eye-slash text-primary me-2"></i>Private Details</p>
Other private Details like DNS information
</div>
</div>
<a class="btn btn-primary py-3 px-5 mt-2" href="https://whatismyipaddress.com/ip-reveal" target="_blank">Read More</a>
</div>
</div>
</div>
</div>
<div class="container-xxl py-5" id="api">
<div class="container">
<div class="row g-5">
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.3s">
<h1 class="mb-4 text-light">About IP-API</h1>
<p class="mb-4">IP Geolocation API is a fast, accurate, reliable geolocation API which provides information of IP address or Domain name like city latitude, longitude, country, ISP.</p>
<p class="mb-4">The data is updated regularly using multiple sources and lookups, ensuring that the information is always up-to-date.</p>
<div class="row gy-2 gx-4 mb-4">
</div>
<a class="btn btn-primary py-3 px-5 mt-2" href="https://ip-api.com/" target="_blank">Read More</a>
</div>
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.1s" style="min-height: 400px;">
<div class="position-relative h-100">
<img class="img-fluid position-absolute w-100 h-100" src="img/api.jpg" alt="" style="object-fit: cover; border-radius: 25px;border: 3px solid white;">
</div>
</div>
</div>
</div>
</div>
<div class="container-xxl py-5">
<div class="container">
<div class="row g-5 " id="about">
<div class="col-lg-1"></div>
<div class="col-lg-10 fadeInUp" data-wow-delay="1s">
<h1 class="mb-4 text-light">About</h1>
<p class="mb-4">Created by Ritesh Naik as a personal project, to implement IP-based API and other web development technologies.</p>
<p class="mb-4">Feel free to cantact me for any feedback or issues - </p>
<div class="row g-2"><div class="col-lg-2">
<a href="http://linkedin.com/in/riteshnaik55" target="_blank"><i class="fa-brands fa-linkedin me-3"></i>LinkedIn</a>
</div>
<div class="col-lg-2">
<a href="http://github.com/riteshnaik55" target="_blank"><i class="fa-brands fa-github me-3"></i>Github</a>
</div>
<div class="col-lg-2">
<a href="mailto:rrn434@pm.me" target="_blank"><i class="fa-solid fa-envelope me-3"></i>Email</a>
</div>
</div>
</div>
<div class="col-lg-1"></div>
</div>
</div>
</div>
<a href="#" class="btn btn-lg btn-primary btn-lg-square back-to-top"><i class="bi bi-arrow-up"></i></a>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js"></script>
<script type="module" src="js/main.js"></script>
</body>
</html>