Skip to content

Commit

Permalink
Initial commit with website files
Browse files Browse the repository at this point in the history
  • Loading branch information
Heyyou155 committed Sep 24, 2024
0 parents commit f226a37
Show file tree
Hide file tree
Showing 5 changed files with 128 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# my_website
# my_website
12 changes: 12 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Crypto Recovery</title>
</head>
<body>
<h1>About Crypto Recovery Services</h1>
<p>Founded in 2017, we help crypto owners recover their lost assets.</p>
</body>
</html>
71 changes: 71 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<!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"> <!-- Link to external CSS -->
</head>
<body>

<header>
<img src="logo.png" alt="Logo"> <!-- Your logo -->
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#join">Join</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#services">Services</a></li>
</ul>
</nav>
</header>

<!-- Home Section -->
<section id="home">
<h1>Welcome to Our Site</h1>
<p>We offer high-quality recovery services and much more.</p>
</section>

<!-- Join Section -->
<section id="join">
<h2>Join Us</h2>
<p>Create an account or login to access exclusive content.</p>
<!-- Registration and Login Form -->
<form action="/signup" method="post">
<input type="text" placeholder="Username" required>
<input type="password" placeholder="Password" required>
<button type="submit">Create Account</button>
</form>
<p>Already have an account? <a href="/login">Login here</a></p>
</section>

<!-- About Us Section -->
<section id="about">
<h2>About Us</h2>
<p>Making Sure Your Crypto is Always Yours. At Crypto Asset Recovery, we understand how crucial it is to keep your cryptocurrency safe and secure. That's why we're dedicated to recovering the passwords to your forgotten wallets, ensuring that your digital assets remain in your possession.</p>
<p>Our team of experts uses cutting-edge, air-gapped servers to crack the code and give you back control of your assets.</p>
<p>Together, we’re leading the way in the crypto asset recovery space and helping drive large-scale adoption of cryptocurrency globally.</p>
</section>

<!-- Services Section -->
<section id="services">
<h2>Our Services</h2>
<p>We provide:</p>
<ul>
<li>Wallet Recovery</li>
<li>Phishing Tools</li>
<li>Social Media Boost Tools</li>
<li>Private Key Recovery</li>
<li>Blockchain Forensics</li>
<!-- Add more services as needed -->
</ul>
</section>

<!-- Footer -->
<footer>
<p>© 2024 Your Company Name. All rights reserved.</p>
<p>Contact us: +357 94512 215</p>
</footer>

</body>
</html>
24 changes: 24 additions & 0 deletions join.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Join Us - Crypto Recovery</title>
</head>
<body>
<h1>Join Crypto Recovery</h1>
<h2>Create Account</h2>
<form action="/signup" method="post">
<input type="text" name="username" placeholder="Username">
<input type="password" name="password" placeholder="Password">
<button type="submit">Sign Up</button>
</form>

<h2>Login</h2>
<form action="/login" method="post">
<input type="text" name="username" placeholder="Username">
<input type="password" name="password" placeholder="Password">
<button type="submit">Login</button>
</form>
</body>
</html>
19 changes: 19 additions & 0 deletions services.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services - Crypto Recovery</title>
</head>
<body>
<h1>Our Services</h1>
<p>We offer the following services:</p>
<ul>
<li>Wallet Password Recovery</li>
<li>Private Key Restoration</li>
<li>Cold Storage Security</li>
<li>Consulting Services</li>
<li>Blockchain Forensics</li>
</ul>
</body>
</html>

0 comments on commit f226a37

Please sign in to comment.