-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (120 loc) · 5.26 KB
/
index.html
File metadata and controls
133 lines (120 loc) · 5.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=h, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css">
<title>EdgeLedger</title>
</head>
<body>
<header>
<nav>
<div class="navwraper">
<div class="first">
<h4><i class="fas fa-book-open"></i><span> Edge</span> Ledger </h4>
</div>
<div class="second">
<ul>
<li>Home</li>
<li>What</li>
<li>Who</li>
<li>Contact</li>
</ul>
</div>
</div>
</nav>
<main>
<h1><span>The Sky </span>
isThe Limit</h1>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Provident rem sit, sequi aliquam, quo velit deleniti accusamus qui dolores eum possimus? Ad perferendis sunt autem, magni accusamus a fugiat porro.</p>
<button>
Read more</button>
</main>
<section class="nextsec">
<h2><span>What </span>We Do</h2>
<section class="next">
<div class="first">
<i class="fas fa-university"></i>
<div>
<h3>Investment Banking</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Iusto aperiam.</p>
</div>
</div>
<div class="first">
<i class="fas fa-book-reader"></i>
<div>
<h3>Portfolio Management</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Iusto aperiam.</p>
</div>
</div>
<div class="first">
<i class="fas fa-pencil-alt"></i>
<div>
<h3>Tax & Custodial</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Iusto aperiam.</p>
</div>
</div>
</section>
</section>
<section class="who">
<div class="img">
</div>
<div class="who-txt">
<h1><span>Who </span>We are</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Beatae repudiandae ullam voluptas libero, commodi nam natus! Rerum, nesciunt animi? Eaque.</p>
<h3>Our Team</h3>
<ul>
<li>Autithi Paul:CEO</li>
<li>Rohan Banerjee:CFO</li>
<li>Anuruddha Paul:Lead Accountant</li>
<li>Anup Shaw:Invest manager</li>
<li>Ayan Banerjee:Senior developer</li></ul>
</div>
</section>
<section class="client">
<div class="container">
<h3>
<span>Our</span>
clients</h3>
<div class="logo">
<div><img src="./logo1.png" alt=""></div>
<div><img src="./logo2.png" alt=""></div>
<div><img src="./logo3.png" alt=""></div>
<div><img src="./logo4.png" alt=""></div>
<div><img src="./logo5.png" alt=""></div>
</div>
</div>
</section>
<section class="contact">
<div class="contact-form">
<h2>Contact Us</h2>
<p>Please Use the form below to contact us</p>
<form>
<div class="form-group">
<label for="name">Name</label>
<input type="text"name="name"id="Phone"placeholder="Enter Name">
</div>
<div class="form-group">
<label for="phone">Phone Number</label>
<input type="text" phone="name"id="phone"placeholder="Enter Name">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="text"email="name" id="email"placeholder="Enter Email">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea name="message"id="message"placeholder="Enter Message"></textarea>
</div>
<input type="submit" value="Send" class="btn-dark">
</form>
</div>
</section>
<footer class="main-footer">
<p>Copyright © 2021,EdgeLedger,All right reserved</p>
</footer>
</header>
</body>
</html>