-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (23 loc) · 855 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<link href='https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css' rel='stylesheet'>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IP-TRACKER</title>
</head>
<body>
<section class="container">
<h1>IP TRACKER</h1>
<div class="search-content">
<input type="text" class="ip-search" id="ipval" placeholder="Coloque aqui o IP que desejas rastrear"><button class='bx bx-chevron-right' onclick="search()"></button>
</div>
<div class="ip-res" id="ipres">
</div>
</section>
</body>
<script src="main.js"></script>
</html>