-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (33 loc) · 1.66 KB
/
index.html
File metadata and controls
39 lines (33 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>API HTTP Explorer</title>
<!-- Favicon -->
<link rel="icon" href="/fevicon.ico" type="image/x-icon" />
<!-- Primary Meta Tags -->
<meta name="title" content="API HTTP Explorer" />
<meta name="description" content="API HTTP Explorer is a web-based tool to test, build, and visualize HTTP requests with real-time responses. Built with React and Tailwind CSS." />
<meta name="author" content="Aakashsingh Rajput" />
<!-- Open Graph / Facebook Meta Tags -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://apihttp.vercel.app/" />
<meta property="og:title" content="API HTTP Explorer" />
<meta property="og:description" content="Send GET, POST, PUT, DELETE requests, view responses, and learn APIs interactively with API HTTP Explorer." />
<meta property="og:image" content="/preview.png" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://apihttp.vercel.app/" />
<meta name="twitter:title" content="API HTTP Explorer" />
<meta name="twitter:description" content="Send GET, POST, PUT, DELETE requests, view responses, and learn APIs interactively with API HTTP Explorer." />
<meta name="twitter:image" content="/preview.png" />
</head>
<body>
<noscript>
API HTTP Explorer – Send and test HTTP requests with ease.
</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>