-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (48 loc) · 2.15 KB
/
index.html
File metadata and controls
56 lines (48 loc) · 2.15 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MANAI TRADING COMPANY</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">MANAI TRADING COMPANY</div>
<button class="menu" aria-label="navigation">☰</button>
<nav id="nav" class="nav" aria-label="main navigation">
<a href="https://www.tradingview.com/" target="_blank">HOME</a>
<a href="https://www.investopedia.com/courses/" target="_blank">COURSES</a>
<a href="httpS://www.babypips.com/contact-us" target="_blank">CONTACT</a>
</nav>
</header>
<main>
<section class="hero">
<div class="hero2">
<h1>Trade Smarter with Manai</h1>
<p>Master the art of forex and stock trading with expert-led mentorship and powerful tools</p>
<a href="#signup" class="cta-button">Join our free Webinar</a>
</div>
<div class="hero-image">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCHZJHR48gtJjKk5zWErE7UGL794KaVQigng&s" alt="Trading dashboard">
</div>
</section>
<section class="form-section" id="signup">
<h2>Register for our free Training</h2>
<form action="signup" aria-label="Signup Form">
<label for="Name">full name</label>
<input type="text" id="name" required>
<label for="email">Email</label>
<input type="email" id="email" name="email" required/>
<label for="interest">What are you interested in?</label>
<textarea name="interest" id="interest" rows="4" placeholder="e.g, Technical analysis, risk management, price action"></textarea>
<button type="submit">Register Now</button>
</form>
</section>
</main>
<footer>
©2025 Manai Trading Group | Designed with purose for traders like you
</footer>
</body>
<script src="script.js"></script>
</html>