-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
153 lines (120 loc) · 4.04 KB
/
Copy pathindex.html
File metadata and controls
153 lines (120 loc) · 4.04 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HOME</title>
<style>
body{
background-color: #4b4947;
background-size: cover;
font-family: 'Trebuchet MS', sans-serif;
}
ul {
list-style-type: none;
margin: 0;
padding: 40;
position:relative;
}
li {
float: left;
text-align: center;
}
li {
border-right: 1px solid rgb(0, 0, 0);
}
li:last-child {
border-right: none;
}
li a {
display: block;
width: 173px;
padding: 20px;
background-color: #ff7300;
}
li a:hover {
background-color: #4b4947;
}
.adviseform {
background-color: #ff7300;
color: white;
}
.navbartext{
font-family:'Times New Roman', Times, serif;
font-size: 30px;
}
.Heading{
font-size: 59px;
font-variant: inherit ;
overflow: hidden;
border-right: .15em white;
white-space: nowrap;
animation:
typing 1.5s steps(20, end) forwards;
width: 0;
}
.typewriter{
display: inline-block;
}
.line{
margin-left: 40px;
width: 1280px;
}
.header{
text-align-last: center;
}
.Imagecentre{
display: block;
margin-left: auto;
margin-right: auto;
}
.TABLE1{
width: 100%;
height: 80px;
background-color: rgb(255, 255, 255);
text-align: center;
color:#ffffff ;
font-size: 30px;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
</style>
</head>
<body>
<div class="typewriter">
<div class="Heading" style="color:#ff7300;">
<pre> WELCOME TO THE BEST TRADING PLATFORM </pre>
</div>
</div>
<ul class="navbartext">
<li><a style="color: white;" href="index.html">Home</a></li>
<li><a style="color: white;" href="Largecap.html">Large CAP</a></li>
<li ><a style="color: white;" href="Midcap.html">Mid CAP</a></li>
<li ><a style="color: white;" href="Smallcap.html">Small CAP</a></li>
<li ><a style="color: white;" href="Login.html">Login/Reg</a></li>
<li><a class="adviseform" style="color: #ffffff;" href="ConsultingHELP.html">HELP</a></li>
</ul>
<pre>
<hr class ="line" style="color: white;">
</pre>
<pre style="text-align: center; font-size: 60px; font-family: 'Times New Roman', Times, serif; color: #ff7300;">
A successful trader must learn
to be a good loser before he can start winning.
<p style="text-align: center; font-size: 40px; font-family: 'Times New Roman', Times, serif; color: #ff7300;"> If not yet registered, Go Now :</p>
<input class="Imagecentre" type="button" value="Login/Register" onClick="window.location.href='http://127.0.0.1:5500/Login.html'" style="height: 100px; width: 100%; font-size: 60px; color: White; font-family: 'Times New Roman', Times, serif; background-color: #ff7300;">
</pre>
<p style="text-align: center; font-size: 40px; font-family: 'Times New Roman', Times, serif; color: #ff7300;">
Choose the kind of Market you are Targeting:
</p>
<table class="TABLE1">
<tr>
<th ><a href="Largecap.html">LARGE CAP</a></th>
<th ><a href="Midcap.html">MID CAP</a></th>
<th ><a href="Smallcap.html">SMALL CAP</a></th>
</tr>
</table>
</body>
</html>