40 lines
944 B
HTML
40 lines
944 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Institutional Trader</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
}
|
|
header {
|
|
border-bottom: 2px solid #007bff;
|
|
padding-bottom: 10px;
|
|
margin-bottom: 30px;
|
|
}
|
|
h1 {
|
|
color: #007bff;
|
|
margin: 0;
|
|
}
|
|
main {
|
|
padding: 20px 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Institutional Trader</h1>
|
|
</header>
|
|
<main>
|
|
<p>Welcome to the Institutional Trader application.</p>
|
|
</main>
|
|
</body>
|
|
</html>
|
|
|