-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
156 lines (140 loc) · 6.05 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
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
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://kit.fontawesome.com/9e8dabcc62.js"></script>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="CSS/style.css">
<link rel="stylesheet" media="screen and (max-width:768px)" href="CSS/mobile.css">
<link rel="stylesheet" media="screen and (min-width:1100px)" href="CSS/widescreen.css">
<title>Edgeledger Financial | Accounting & investment </title>
</head>
<body id="home">
<nav id="navbar">
<h1 class="logo">
<span class="text-primary">
<i class="fas fa-book-open"></i> Edge
</span>Ledger
</h1>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#what">What</a></li>
<li><a href="#who">Who</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<header id="showcase">
<div class="showcase-content">
<h1 id="l-heading">
The Sky is the Limit
</h1>
<p class="lead">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eius non neque cumque perspiciatis soluta! Dolorem.
</p>
<a href="#what" class="btn">Read More</a>
</div>
</header>
<section id="what" class="bg-light py-1">
<div class="container">
<h2 class="m-heading text-center">
<span class="text-primary">What</span> We Do
</h2>
<div class="items">
<div class="item">
<i class="fas fa-university fa-2x"></i>
<div>
<h3>Investment Banking</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dignissimos, cupiditate!</p>
</div>
</div>
<div class="item">
<i class="fas fa-book-reader fa-2x"></i>
<div>
<h3>Portfolio Management</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dignissimos, cupiditate!</p>
</div>
</div>
<div class="item">
<i class="fas fa-pencil-alt fa-2x"></i>
<div>
<h3>Tax & Custodial</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dignissimos, cupiditate!</p>
</div>
</div>
</div>
</div>
</section>
<section id="who">
<div class="who-img"></div>
<div class="who-text bg-dark p-2">
<h2 class="m-heading">
<span class="text-primary">Who</span> We Are</h2>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Dignissimos quas amet in dolor, consequuntur atque.</p>
<h3>Our Team</h3>
<ul class="list">
<li>Shaleen : Brand Ambassador </li>
<li>Aradhya : Jr. Ambassador </li>
<li>Bharat : Accountant</li>
<li>Tanya : Chief Sponsor</li>
<li>Bhumi : Marketer</li>
</ul>
</div>
</section>
<section id="clients" class="py-1">
<div class="container">
<h2 class="m-heading text-center">
<span class="text-primary">Our</span>
Clients
</h2>
<div class="things py-1">
<div><img src="./logos/logo1.png" alt=""></div>
<div><img src="./logos/logo2.png" alt=""></div>
<div><img src="./logos/logo3.png" alt=""></div>
<div><img src="./logos/logo4.png" alt=""></div>
<div><img src="./logos/logo5.png" alt=""></div>
</div>
</div>
</section>
<section id="contact">
<div class="contact-form bg-primary p-2">
<h2 class="m-heading">Contact Us</h2>
<p>Please use the form below to contact </p>
<form action="https://formspree.io/mnqbngdq" method="POST" target="_blank">
<div class="group">
<label for="1">Name</label>
<input type="text" name="name" placeholder="Enter name">
</div>
<div class="group">
<label for="2">E-mail</label>
<input type="email" name="email" placeholder="Enter Email">
</div>
<div class="group">
<label for="3">Phone Number</label>
<input type="number" name="Number" placeholder="Enter Number">
</div>
<div class="group">
<label for="4">Message</label>
<input type="message" name="Message" placeholder="Enter Message">
</div>
<input type="Submit" value="Send">
</form>
</div>
<!-- <div class="map"></div> -->
</section>
<footer id="main-footer" class="bg-dark text-center">
<div class="container">
<p>Copyright © 2019 Edge Ledger, All Rights Reserved</p>
<p>Made with <span id="heart">♥</span> by <a href="https://www.shaleen.co" target="_blank">Shaleen Govil</a> </p>
</div>
</footer>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script src="JS/main.js" ></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCHlAHl32Y-S13Yi3Qnp2KlWXJ9d-vX2dY&callback=initMap"
async defer></script>
</body>
</html>