-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
38 lines (30 loc) · 1.01 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>LendTez</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="./css/bulma.min.css"/>
<link rel="stylesheet" href="./css/fontawesome.all.min.css"/>
</head>
<body>
<div class="container">
<nav class="navbar has-background-success-light">
<div class="navbar-brand ml-0 mr-5">
<div class="navbar-item">
<p class="title has-text-success-dark is-3 is-unselectable">LendTez</p>
</div>
</div>
</nav>
</div>
<div class="container" style="width:75%">
<section class="section">
<h1 class="title">Lending and Borrowing</h1>
<a class="button is-success my-5 is-medium is-rounded has-text-weight-semibold" href="app.html">Enter App</a>
<h2 class="subtitle my-5">
<b>LendTez</b> is an open-source, decentralised, peer-to-peer lending and borrowing protocol with no commissions and no liquidation.
</h2>
</section>
</div>
</body>
</html>