-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (48 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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 class="l-heading">
The Sky Is The Limit
</h1>
<p class="lead">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Ea, est necessitatibus nam asperiores laudantium quam?
</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"><span class="text-primary">What</span> We Do
</h2>
<div class="items">
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
</div>
</section>
</body>
</html>