-
Notifications
You must be signed in to change notification settings - Fork 1
/
payment.html
120 lines (102 loc) · 5.16 KB
/
payment.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<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>PhonePe - India's Most Loved UPI App</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Ubuntu&display=swap"
rel="stylesheet">
<!-- Latest compiled and minified CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"></script>
<!-- CSS stylesheet -->
<link rel="stylesheet" href="paymentsstyle.css">
<link rel="stylesheet" href="queries.css">
<!--Ionicons -->
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
</head>
<body>
<section class="colored-section" id="title">
<!-- ref - https://getbootstrap.com/docs/5.3/components/navbar/#nav -->
<!-- removed bg-body-tertiary -->
<!-- reversed container fluid with nav -->
<div class="container-fluid">
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="#"><img src="images/phonepe_logo.png"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse push-right" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link">Customers</a>
</li>
</ul>
</div>
</nav>
<div class="row move-left">
<div class="col-md-6">
<h1 class="big-heading">PhonePe India's most Loved UPI App</h1>
<button type="button" class="btn btn-lg btn-dark download-button"><ion-icon name="logo-apple"
role="img" class="md hydrated" aria-label="logo apple"></ion-icon> Download</button>
<button type="button" class="btn btn-lg btn-outline-light download-button"><ion-icon
name="logo-google-playstore" role="img" class="md hydrated"
aria-label="logo google playstore"></ion-icon> Download</button>
</div>
<div class="col-md-6">
<img class="image-iphone" src="images/phonepe_hero.svg" alt="iphone-mockup">
</div>
</div>
</div>
</section>
<section class="white-section" id="features">
<div class="row">
<div class="feature-box col-xl-4 col-lg-6 col-xs-12">
<div class="spacer">
<img src="rocket.svg">
<h3>One app for all things money in your life.</h3>
<p>Pay bills, recharge, send money, buy gold, invest and shop at your favourite stores.</p>
</div>
</div>
<div class="feature-box col-xl-4 col-lg-6 col-xs-12">
<div class="spacer">
<img src="money.svg">
<h3>Pay whenever you like, wherever you like.</h3>
<p>Choose from options like UPI, the PhonePe wallet or your Debit and Credit Card.</p>
</div>
</div>
<div class="feature-box col-xl-4 col-lg-12 col-xs-12">
<div class="spacer">
<img src="switch.svg">
<h3>All your favourite apps on PhonePe Switch.</h3>
<p>Book flights, order food or buy groceries. All your favourite apps without downloading.</p>
</div>
</div>
</div>
</section>
<section class="grey-section" id="press">
<h2>PhonePe is the best thing that ever had happenned to me ever. Its the best !!!</h2>
<img class="roundedimg" src="barackobama.jpeg">
<p>- Barack Obama</p>
<img class="press-img" src="ndtv.png" alt="ndtv-logo">
<img class="press-img" src="forbes.png" alt="forbes-logo">
<img class="press-img" src="newyorktimes.png" alt="nyt-logo">
<img class="press-img" src="yourstory.png" alt="yourstory-logo">
</section>
</body>
</html>