Skip to content

Create index.html #1041

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 92 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
<!DOCTYPE html><html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TradeVortex - Smart Trading Starts Here</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Segoe UI', sans-serif;
background: #f4f6fa;
color: #333;
line-height: 1.6;
}
header {
background: linear-gradient(to right, #0b3d91, #1c5fff);
color: white;
padding: 20px;
text-align: center;
}
header h1 {
font-size: 2.5rem;
}
nav {
margin-top: 10px;
}
nav a {
margin: 0 15px;
color: white;
text-decoration: none;
font-weight: bold;
}
section {
padding: 40px 20px;
max-width: 1200px;
margin: auto;
}
.card {
background: white;
padding: 20px;
margin-bottom: 30px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.cta {
display: inline-block;
background: #1c5fff;
color: white;
padding: 12px 25px;
text-decoration: none;
border-radius: 5px;
margin-top: 15px;
}
footer {
background: #0b3d91;
color: white;
text-align: center;
padding: 20px;
}@media (max-width: 768px) {
header h1 {
font-size: 1.8rem;
}
nav a {
display: block;
margin: 10px 0;
}
.cta {
display: block;
width: 100%;
text-align: center;
}
}

</style>
</head>
<body> <header>
<h1>TradeVortex</h1>
<p>Your Gateway to Smart Trading</p>
<nav>
<a href="#">Home</a>
<a href="#about">About</a>
<a href="#services">Services</a>
<a href="#contact">Contact</a>
</nav>
</header> <section>
<div class="card" id="about">
<h2>About Us</h2>
<p>TradeVortex is dedicated to helping new and experienced traders navigate the stock and crypto markets with confidence. We provide expert trading tips, real-time insights, and mentorship to level up your trading
add index.html