-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (119 loc) · 4.66 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
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
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Block Loan - P2P Crypto Lending</title>
<link rel="stylesheet" href="styles.css">
<script src="scripts.js" defer></script>
</head>
<body>
<header>
<div class="container">
<h1>Crypto Exchange</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#borrow-lend">Borrow/Lend</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#login">Login</a></li>
<li><a href="#register">Register</a></li>
</ul>
</nav>
</div>
</header>
<section id="home" class="hero">
<div class="container">
<h2>Welcome to Block Loan</h2>
<p>The future of P2P crypto lending is here.</p>
<a href="#features" class="cta-button">Learn More</a>
</div>
</section>
<section id="features" class="features">
<div class="container">
<h2>Features</h2>
<div class="feature-item">
<img src="images/ethereum.png" alt="Ethereum">
<h3>Smart and Secure Lending</h3>
<p>Automated, transparent, and tamper-proof agreements with smart contracts.</p>
</div>
<div class="feature-item">
<img src="images/polkadot.png" alt="Polkadot">
<h3>Flexible Collateral Options</h3>
<p>Accept a wide range of cryptocurrencies as collateral.</p>
</div>
<div class="feature-item">
<img src="images/bitcoin.png" alt="Bitcoin">
<h3>Incentivized Repayment System</h3>
<p>Earn rewards and participate in crypto giveaways for timely repayments.</p>
</div>
</div>
</section>
<section id="borrow-lend" class="borrow-lend">
<div class="container">
<h2>Borrow & Lend</h2>
<div class="feature-item">
<img src="images/stellar.png" alt="Block Loan">
<h3>Cosmic Collateral</h3>
<p>Secure loans with various crypto assets.</p>
</div>
<div class="feature-item">
<img src="images/chainlink.png" alt="Chainlink">
<h3>Block Loan Lending</h3>
<p>Connect with lenders across the globe with ease.</p>
</div>
<div class="feature-item">
<img src="images/cardano.png" alt="Cardano">
<h3>Galactic Rewards</h3>
<p>Benefit from timely repayments with exclusive rewards.</p>
</div>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2>Contact Us</h2>
<form>
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
<label for="message">Message</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</section>
<section id="login" class="login">
<div class="container">
<h2>Login</h2>
<form>
<label for="email">Email</label>
<input type="email" id="login-email" name="email" required>
<label for="password">Password</label>
<input type="password" id="login-password" name="password" required>
<button type="submit">Login</button>
</form>
</div>
</section>
<section id="register" class="register">
<div class="container">
<h2>Register</h2>
<form>
<label for="name">Name</label>
<input type="text" id="register-name" name="name" required>
<label for="email">Email</label>
<input type="email" id="register-email" name="email" required>
<label for="password">Password</label>
<input type="password" id="register-password" name="password" required>
<button type="submit">Register</button>
</form>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Block Loan. All rights reserved.</p>
</div>
</footer>
</body>
</html>