-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
154 lines (144 loc) · 4.47 KB
/
index.html
File metadata and controls
154 lines (144 loc) · 4.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- -->
<!-- Primary Meta Tags -->
<title>IP Address Tracker | Frontend Mentor | Alamin</title>
<meta
name="title"
content="IP Address Tracker | Frontend Mentor | Alamin"
/>
<meta
name="description"
content="A responsive web app using Leaflet maps, Vanilla JS, Sass, and HTML to track IP addresses and domains. "
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://ip-address-tracker-alamin.app/" />
<meta
property="og:title"
content="IP Address Tracker | Frontend Mentor | Alamin"
/>
<meta
property="og:description"
content="A responsive web app using Leaflet maps, Vanilla JS, Sass, and HTML to track IP addresses and domains. "
/>
<meta
property="og:image"
content="https://raw.githubusercontent.com/CodeWithAlamin/IP-Address-Tracker/main/screenshots/ip-address-tracker-preview-CodeWithAlamin.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:url"
content="https://ip-address-tracker-alamin.app/"
/>
<meta
property="twitter:title"
content="IP Address Tracker | Frontend Mentor | Alamin"
/>
<meta
property="twitter:description"
content="A responsive web app using Leaflet maps, Vanilla JS, Sass, and HTML to track IP addresses and domains. "
/>
<meta
property="twitter:image"
content="https://raw.githubusercontent.com/CodeWithAlamin/IP-Address-Tracker/main/screenshots/ip-address-tracker-preview-CodeWithAlamin.png"
/>
<!-- Optional -->
<meta name="author" content="Alamin , CodeWithAlamin" />
<meta
name="keywords"
content="IP Address Tracker, Geolocation, Domain Search, Leaflet Map, Error Handling, User-friendly Feedback, Web Application, CodeWithAlamin"
/>
<!-- -->
<link
href="./src/images/favicon-32x32.png"
rel="icon"
type="image/png"
sizes="32x32"
/>
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""
/>
</head>
<body>
<section class="my-profile">
<div class="my-profile__content">
<img src="./src/images/my-photo.webp" alt="my photo" />
<h1>Alamin</h1>
<h2>@CodeWithAlamin</h2>
</div>
</section>
<div class="modal">
<div class="modal__info">
<button class="btn-modal-close" type="button">X</button>
<h1>Oops!</h1>
<p class="error-message"></p>
</div>
</div>
<main class="container">
<section class="details-section">
<h1 class="details-section__heading">IP Address Tracker</h1>
<form novalidate id="form" action="#" class="details-section__form">
<input
class="search-input"
type="url"
placeholder="Search for any IP address or domain"
/>
<button class="btn-submit" type="submit">
<img src="./src/images/icon-arrow.svg" alt="Arrow" />
</button>
</form>
<ul class="card">
<li>
<h2>IP Address</h2>
<p id="ip-address">192.212.174.101</p>
</li>
<li>
<h2>Location</h2>
<p id="location">Brooklyn, NY 10001</p>
</li>
<li>
<h2>Timezone</h2>
<p id="timezone">UTC -05:00</p>
</li>
<li>
<h2>ISP</h2>
<p id="isp">SpaceX Starlink</p>
</li>
</ul>
</section>
<div id="map" class="map"></div>
</main>
<footer class="footer">
<div class="attribution-wrapper">
<p class="attribution">
<span>
Coded by
<a
class="attb-link"
href="https://twitter.com/CodeWithAlamin"
target="_blank"
>Alamin</a
>
</span>
<span>
Challenge by
<a
class="attb-link attb-fem"
href="https://www.frontendmentor.io/profile/CodeWithAlamin"
target="_blank"
>Frontend Mentor</a
>
</span>
</p>
</div>
</footer>
</body>
</html>