-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
33 lines (32 loc) · 1002 Bytes
/
popup.html
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
<!DOCTYPE html>
<html lang="en">
<style>
.container{
width: 400px;
}
.logo{
padding: 10px;;
}
</style>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Donatify</title>
</head>
<body>
<div class="container">
<div class="logo" >
<img src="/images/Donatify-fullLogo.png" alt="" width = "200px">
</div>
<div style="display: flex; flex-direction: column;">
<h2>Your Total: $1,109.69</h2>
<h3>Your donation: $0.31</h3>
<button style="width: 30vw; margin: 10px;">Add to Donation</button>
<button style="width: 30vw; margin: 10px;">Donatify</button>
<a href="checkoutform.html">
<button style="width: 30vw; margin: 10px;">Change banking Details</button></a>
</div>
</div>
</body>
</html>