-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (35 loc) · 1.37 KB
/
index.html
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
<!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">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css"
integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous" />
<link rel="stylesheet" href="styles/style.css">
<title>Bridge Trust</title>
</head>
<body>
<!-- Navbar Section -->
<nav class="navbar">
<a href="/" class="navbar__logo">Bridge Trust</a>
<div class="navbar__bars"><i class="fas fa-bars"></i></div>
<div class="navbar__menu">
<a href="/" class="navbar__menu--links">Home</a>
<a href="/" class="navbar__menu--links">Products</a>
<a href="/" class="navbar__menu--links">Services</a>
<a href="/" class="navbar__menu--links" id="button">Sign Up</a>
</div>
</nav>
<!-- Hero Section -->
<div class="hero">
<img src="./styles/images/banner1.jpg" alt="">
<div class="hero__container">
<h1>Financially smart</h1>
<h3>Service from the heart</h3>
<p>Sign up now to join.</p>
<button class="hero__container--btn"><a href="#">Sign Up</a></button>
</div>
</div>
</body>
</html>