"Project"
Bootstrap 4.1.1 Snippet by Andrigs

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
HTTP request in Javascript.
andri gunawan
How do I make an HTTP request in Javascript?
To make an HTTP request in JavaScript, you can use the built-in fetch function or the XMLHttpRequest object.
Here is an example of using fetch to make a GET request:
javascript
Copy code
fetch('https://example.com/data')
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));
In this example, fetch is called with the URL of the resource to retrieve. The then method is called on the resulting promise, which converts the response to JSON format and logs it to the console. If an error occurs
andri gunawan
Contoh code html dan css bussines profil
Berikut adalah contoh kode HTML dan CSS untuk halaman profil bisnis:
HTML:
html
Copy code
<!DOCTYPE html>
<html>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
HTTP request in Javascript.
andri gunawan
How do I make an HTTP request in Javascript?
To make an HTTP request in JavaScript, you can use the built-in fetch function or the XMLHttpRequest object.
Here is an example of using fetch to make a GET request:
javascript
Copy code
fetch('https://example.com/data')
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));
In this example, fetch is called with the URL of the resource to retrieve. The then method is called on the resulting promise, which converts the response to JSON format and logs it to the console. If an error occurs
andri gunawan
Contoh code html dan css bussines profil
Berikut adalah contoh kode HTML dan CSS untuk halaman profil bisnis:
HTML:
html
Copy code
<!DOCTYPE html>
<html>
<head>
<title>Profil Bisnis</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: