-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
24 lines (24 loc) · 1.02 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
<title>Payment Processing API</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 class="task">Task: Payment Processing API</h1>
<p class="task">
Following is an e-commerce product which has a button called "Buy Now", which would eventually process a direct payment through an API. The website is pre-designed for you. You need not make any modifications to the design of the website, but you will need to make the payment processing functional using an API.
<br><br>
<a href="instructions.html">Read the Instructions here.</a>
</p>
<hr>
<div class="product">
<div class="item">
<img class="product-img" src="product.jpg">
<hr>
<h3 class="task">Sample Product</h3>
<p class="task">Some random description</p>
<a href="order.php?id=100" class="btn">Buy Now</a>
</div>
</div>
</body>
</html>