-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathip.html
47 lines (38 loc) · 785 Bytes
/
ip.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="searchbar.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css"/>
<title>Location Test</title>
</head>
<body>
<div class="box">
<h1 id="greeting">
</h1>
<h3 id="question">
I see you in
</h3>
<br>
<p>Your Public IP Address:</p>
<p id="ip">
<div class="search-bar">
<input
type="text"
class="input"
aria-label="search"
placeholder="enter your search"
spellcheck="false"
/>
<div
class="icon"
role="button"
aria-label="input submit"
>
🔎
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src = "ip.js"></script>
</body>
</html>