|
1 | | -<!DOCTYPE html> |
| 1 | +<!doctype html> |
2 | 2 | <html lang="en"> |
3 | | -<head> |
4 | | - <meta charset="UTF-8"> |
5 | | - <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
6 | 6 | <title>AI-Powered Toolbox</title> |
7 | | - <link rel="stylesheet" href="styles.css"> |
8 | | -</head> |
9 | | -<body> |
| 7 | + <link rel="stylesheet" href="styles.css" /> |
| 8 | + </head> |
| 9 | + <body> |
10 | 10 | <header> |
11 | | - <h1>AI-Powered Online Toolbox</h1> |
12 | | - <p>Your go-to tools enhanced by Artificial Intelligence for networking and IP-related tasks.</p> |
| 11 | + <h1>AI-Powered Online Toolbox</h1> |
| 12 | + <p> |
| 13 | + Your go-to tools enhanced by Artificial Intelligence for networking and |
| 14 | + IP-related tasks. |
| 15 | + </p> |
13 | 16 | </header> |
14 | 17 | <main> |
15 | | - <section id="tools"> |
16 | | - <div> |
17 | | - <h2>What's My IP Address</h2> |
18 | | - <button onclick="getMyIP()">Check</button> |
19 | | - <p id="my-ip">Your IP will appear here.</p> |
20 | | - </div> |
21 | | - <div> |
22 | | - <h2>IP Lookup / Geolocation</h2> |
23 | | - <input type="text" id="ip-input" placeholder="Enter an IP address"> |
24 | | - <button onclick="lookupIP()">Lookup</button> |
25 | | - <p id="ip-info">Results will appear here.</p> |
26 | | - </div> |
27 | | - <div> |
28 | | - <h2>Internet Speed Test</h2> |
29 | | - <button onclick="runSpeedTest()">Run Test</button> |
30 | | - <p id="speed-results">Speed test results will appear here.</p> |
31 | | - </div> |
32 | | - <div> |
33 | | - <h2>Ping</h2> |
34 | | - <input type="text" id="ping-url" placeholder="Enter URL"> |
35 | | - <button onclick="ping()">Ping</button> |
36 | | - <p id="ping-results">Ping results will appear here.</p> |
37 | | - </div> |
38 | | - </section> |
39 | | - <div id="error-message" style="display:none;"></div> |
| 18 | + <section id="tools"> |
| 19 | + <div> |
| 20 | + <h2>What's My IP Address</h2> |
| 21 | + <button onclick="getMyIP()">Check</button> |
| 22 | + <p id="my-ip">Your IP will appear here.</p> |
| 23 | + </div> |
| 24 | + <div> |
| 25 | + <h2>IP Lookup / Geolocation</h2> |
| 26 | + <input type="text" id="ip-input" placeholder="Enter an IP address" /> |
| 27 | + <button onclick="lookupIP()">Lookup</button> |
| 28 | + <p id="ip-info">Results will appear here.</p> |
| 29 | + </div> |
| 30 | + <div> |
| 31 | + <h2>Internet Speed Test</h2> |
| 32 | + <button onclick="runSpeedTest()">Run Test</button> |
| 33 | + <p id="speed-results">Speed test results will appear here.</p> |
| 34 | + </div> |
| 35 | + <div> |
| 36 | + <h2>Ping</h2> |
| 37 | + <input type="text" id="ping-url" placeholder="Enter URL" /> |
| 38 | + <button onclick="ping()">Ping</button> |
| 39 | + <p id="ping-results">Ping results will appear here.</p> |
| 40 | + </div> |
| 41 | + </section> |
| 42 | + <div id="error-message" style="display: none"></div> |
40 | 43 | </main> |
41 | 44 | <footer> |
42 | | - <p>© 2025 AI Toolbox</p> |
| 45 | + <p>© 2025 AI Toolbox</p> |
43 | 46 | </footer> |
44 | 47 | <script src="scripts.js"></script> |
45 | | -</body> |
| 48 | + </body> |
46 | 49 | </html> |
0 commit comments