-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (64 loc) · 3.11 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
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Website Title</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="logo.png" alt="Logo">
<img src="https://rewallet.de/img/bitcoin.svg" alt="Bitcoin Icon" style="width: 30px; height: 30px;"> <!-- Added Bitcoin image -->
</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="join.html">Join</a>
<a href="register.html">Register</a>
</div>
</nav>
</header>
<main>
<section id="situation">
<h2>Let Us Know Your Situation</h2>
<p>Describe your situation and what you need help with. We can usually estimate quickly if we can help you.</p>
</section>
<section id="how-it-works">
<h2>How Does It Work</h2>
<ol>
<li><strong>Fill Out Our Questionnaire:</strong> Click on "Start Now" to access our questionnaire for the first important information.</li>
<li><strong>Feedback:</strong> Based on your information, we'll check if we can help you. Expect feedback within 24 hours.</li>
<li><strong>Request 1:</strong> If we can help, we send you our contract for your legal protection. Provide the necessary information.</li>
<li><strong>Get to Work:</strong> Once we have all the required information, we'll start immediately, typically restoring your wallet within 48-72 hours.</li>
</ol>
</section>
<section id="promise">
<h2>Our Promise to You</h2>
<ul>
<li><strong>Speed:</strong> Feedback within 24 hours, with wallet restoration in a few days.</li>
<li><strong>Success-Based Commission:</strong> No payment until you regain access to your wallet, with a 20% commission on recovery.</li>
<li><strong>Service:</strong> Always available to assist with your wallet issues.</li>
</ul>
<button onclick="window.location.href='start_now.html';">Start Now</button>
</section>
<section id="testimonials">
<h2>Testimonials</h2>
<blockquote>
<p>This trustworthy company was able to recover an amount of electronic currency that I had already thought lost. The communication with ReWallet experts was open and professional.</p>
<footer>- Anton E.</footer>
</blockquote>
<blockquote>
<p>By a stupid mistake, I wrote down only 11 of 12 words of my seed phrase. Desperately I tried it myself but gave up after a short time. ReWallet restored my access.</p>
<footer>- Kai Olaf W.</footer>
</blockquote>
</section>
</main>
<footer>
<p>© 2024 Your Company Name. All rights reserved.</p>
</footer>
</body>
</html>