-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit f226a37
Showing
5 changed files
with
128 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# my_website | ||
# my_website |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |