-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (26 loc) · 853 Bytes
/
index.html
File metadata and controls
35 lines (26 loc) · 853 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Paypal Buttons Sample</title>
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<div class="card">
<img src="/img/camera.jpg" alt="Camera">
<p>New Camera</p>
<p class="price">$100.00</p>
<div id="paypal-button"></div>
</div>
<script src="https://www.gstatic.com/firebasejs/8.3.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.3.1/firebase-functions.js"></script>
<script>
const firebaseConfig = {
// Your firebase config here ! 😃
};
firebase.initializeApp(firebaseConfig);
</script>
<script
src="https://www.paypal.com/sdk/js?client-id=<<PAYPAL CLIENT ID>>¤cy=USD"></script>
<script src="/scripts.js"></script>
</body>
</html>