mirror of
https://github.com/Rushilwiz/reinvest.git
synced 2025-04-04 20:40:19 -04:00
90 lines
2.9 KiB
HTML
90 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>ReInvest</title>
|
|
<link rel="stylesheet" href="css/index.css" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
|
|
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
|
|
crossorigin="anonymous"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
|
<a class="navbar-brand" href="#reinvest">ReInvest</a>
|
|
<button
|
|
class="navbar-toggler"
|
|
type="button"
|
|
data-toggle="collapse"
|
|
data-target="#navbarNavDropdown"
|
|
aria-controls="navbarNavDropdown"
|
|
aria-expanded="false"
|
|
aria-label="Toggle navigation"
|
|
>
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNavDropdown">
|
|
<ul class="navbar-nav">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#about"
|
|
>About <span class="sr-only">(current)</span></a
|
|
>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#services">Our Services</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#support">Support</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<ul class="navbar-nav navbar-right">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#LOGIN">Login</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link bg-success rounded" href="#REGISTER">Register</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
<section
|
|
class="reinvest"
|
|
style="
|
|
background-image: url('images/background.jpg');
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
height: 480px;
|
|
padding-top: 80px;
|
|
"
|
|
>
|
|
<div class="container">
|
|
<h1 class="text-white">ReInvest</h1>
|
|
<br />
|
|
<br />
|
|
<h3 class="text-white">
|
|
Trade stocks under the name of a charity of your choice!
|
|
</h3>
|
|
</div>
|
|
</section>
|
|
<script href="js/index.js"></script>
|
|
<script
|
|
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
|
|
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
<script
|
|
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
|
|
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
<script
|
|
src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
|
|
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
</body>
|
|
</html>
|