-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
174 lines (141 loc) · 6.24 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!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">
<title>Fractionalised Real Estate</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap" rel="stylesheet">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="./css/mobile.css">
</head>
<body>
<div id="content-loaded-bx">
<img src="./gif/Wedges-3s-200px.svg" alt="">
<h1 class="ml3 center-text">Welcome To The Future of Real Estate</h1>
</div>
<div id="waiting-list-modal" class="modal">
<div id="waiting-list-bx">
<div id="input-field-bx">
<h4>Enter Your Email Address</h4>
<input type="email" id="email" placeholder="Enter email" value="">
<input type="submit" value="JOIN WAITINGLIST" id="submit-email">
</div>
<div id="loading-bx">
<img src="./gif/Infinity-1s-200px.svg" alt="">
</div>
<div id="success-bx">
<img src="./gif/success.gif" alt="" id="success-gif">
</div>
</div>
</div>
<nav>
<h2 id="logo">FracState</h2>
<div id="nav-item-bx" class="nav-out">
<a href="#" class="nav-item">Contact Us</a>
<a href="#" class="nav-item">Reviews</a>
</div>
<div id="hamburger-bx" class="ham-out">
<div id="ham-before"></div>
<div id="ham"></div>
<div id="ham-after"></div>
</div>
</nav>
<section class="jumbotron" id="jumbotron-container">
<div class="jumbo-text-bx" data-aos="fade-left" data-aos-anchor="#example-anchor" data-aos-offset="500" data-aos-duration="500">
<h1 class="center-text">INVEST IN REAL ESTATE,</h1>
<h4 class="center-text">BUT FRACTIONALIZED</h4>
</div>
<div class="jumbo-text-bx j-t-bx-2" data-aos="fade-up" data-aos-duration="3000">
<ul>
<li>Join a waiting list</li>
<li>Be notified when a property is listed</li>
<li>Join other investors and own a fraction of the property</li>
</ul>
</div>
</section>
<section class="listing-section">
<h2 class="center-text m-y">Join Our Waiting List</h2>
<div id="listing-container">
<div class="listing-item" data-aos="fade-right">
<div class="property-img-bx">
<img src="./images/house.jpg" alt="" class="property-img">
</div>
<div class="property-details">
<h3 class="property-title">Property 1</h3>
<div class="property-text">
Lagos
</div>
<button class="btn">JOIN WAITING LIST</button>
</div>
</div>
<div class="listing-item" data-aos="flip-left">
<div class="property-img-bx">
<img src="./images/house3.jpg" alt="" class="property-img">
</div>
<div class="property-details">
<h3 class="property-title">Property 2</h3>
<div class="property-text">
Abuja
</div>
<button class="btn">JOIN WAITING LIST</button>
</div>
</div>
<div class="listing-item" data-aos="fade-left">
<div class="property-img-bx">
<img src="./images/house1.jpg" alt="" class="property-img">
</div>
<div class="property-details">
<h3 class="property-title">Property 3</h3>
<div class="property-text">
Port-Harcourt
</div>
<button class="btn">JOIN WAITING LIST</button>
</div>
</div>
<div class="listing-item" data-aos="zoom-in-up">
<div class="property-img-bx">
<img src="./images/house3.jpg" alt="" class="property-img">
</div>
<div class="property-details">
<h3 class="property-title">Property 4</h3>
<div class="property-text">
Owerri
</div>
<button class="btn">JOIN WAITING LIST</button>
</div>
</div>
<div class="listing-item" data-aos="zoom-in-up">
<div class="property-img-bx">
<img src="./images/house2.jpg" alt="" class="property-img">
</div>
<div class="property-details">
<h3 class="property-title">Property 5</h3>
<div class="property-text">
Lagos
</div>
<button class="btn">JOIN WAITING LIST</button>
</div>
</div>
<div class="listing-item" data-aos="zoom-in-up">
<div class="property-img-bx">
<img src="./images/house1.jpg" alt="" class="property-img">
</div>
<div class="property-details">
<h3 class="property-title">Property 6</h3>
<div class="property-text">
Delta
</div>
<button class="btn">JOIN WAITING LIST</button>
</div>
</div>
</div>
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script src="./js/main.js"></script>
</body>
</html>