forked from tanmayy-mishra/Tanny-s-p2p
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesktop-4.html
48 lines (45 loc) · 1.76 KB
/
desktop-4.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1, width=device-width" />
<title></title>
<meta name="description" content="" />
<link rel="stylesheet" href="./desktop-4.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap"
/>
</head>
<body>
<div class="desktop-4">
<img class="group-icon" alt="" src="public/group-3.svg" id="group" />
<div class="p2p-carpooling-dapp1">P2P CARPOOLING DAPP</div>
<div class="about-div">ABOUT</div>
<img class="image-9-icon1" alt="" src="public/image-9@2x.png" />
<div class="group-div3">
<b class="connect-your-wallet">Connect your Wallet</b>
</div>
<img class="x600-1-icon" alt="" src="public/800x600-1@2x.png" />
<div class="an-alternative-cab-service-app">
An alternative cab service app to other apps like Ola, and Uber, which
control the work environment for drivers and take chunks of cuts from
their earnings as commission, making life difficult for a regular
driver. This P2P Carpooling DAPP will connect drivers directly with
customers to share a ride. The transactions will go through smart
contracts run on blockchain technology and paid via cryptocurrency.
Anyone can register as a driver and publish rides for people to book.
This DAPP makes the process more hassle-free, making it more
transparent.
</div>
</div>
<script>
var group = document.getElementById("group");
if (group) {
group.addEventListener("click", function (e) {
window.location.href = "/";
});
}
</script>
</body>
</html>