14 lines
275 B
HTML
14 lines
275 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Api Test</title>
|
|
</head>
|
|
|
|
<body>
|
|
<script>
|
|
// Query Fake User API
|
|
let request = fetch("https://randomuser.me/api/");
|
|
console.log(request);
|
|
</script>
|
|
</body>
|
|
</html> |