-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (83 loc) · 2.64 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
<!DOCTYPE html>
<html>
<head>
<title>Find An Agent</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="stylesheets/style.css" type="text/css" rel="stylesheet">
<link href='http://fonts.useso.com/css?family=Open+Sans:300italic,400italic,600italic,300,600,400' rel='stylesheet' type='text/css'>
<link href="stylesheets/font-awesome.css" type="text/css" rel="stylesheet">
</head>
<body>
<section class="hero">
<header>
<ul>
<li>Agents</li>
<li>Login</li>
<li>Signup</li>
</ul>
</header>
<h1>Relax, Finding An Agent Just Got Easier</h1>
<h2>Receive proposals from best agents for free</h2>
<br><br><br>
<form action="">
<input type="text" placeholder="Enter a suburb"><input type="button" value="search">
</form>
</section>
<section class="numbers">
<ul>
<li class="number">
<h2>20,000</h2>
<h3>Agents</h3>
</li>
<li class="number">
<h2>1,723,000</h2>
<h3>Transactions</h3>
</li>
<li class="number">
<h2>17,444</h2>
<h3>Agencies</h3>
</li>
<li class="number">
<h2>10,200</h2>
<h3>Suburbs</h3>
</li>
</ul>
</section>
<section class="how-it-works container">
<h2>How it works</h2>
<ul>
<li>
<div class="detail">
<span class="number">1</span>
<i class="fa fa-list fa-3x"></i>
<h3>Compare</h3>
<p>Iste ut hic placeat non commodi quae cumque totam architecto, ipsa optio sunt id, nihil reprehenderit quo amet fugit cum numquam molestias.</p>
</div>
</li>
<li>
<div class="detail">
<span class="number">2</span>
<i class="fa fa-pencil fa-3x"></i>
<h3>Receive proposals</h3>
<p>Odio hic minima atque ad, earum quidem harum, culpa tempore pariatur minus commodi nemo et provident velit vel, in sint eveniet architecto.</p>
</div>
</li>
<li>
<div class="detail">
<span class="number">3</span>
<i class="fa fa-users fa-3x"></i>
<h3>Sell with the best</h3>
<p>Aut molestias minus optio fuga illum, nemo deleniti neque dolore quod voluptate dolor, a, sequi amet, cumque ipsam quae. Maiores temporibus, voluptatibus!</p>
</div>
</li>
</ul>
</section>
<footer>
<p>Created by <a href="http://github.com/tkin1992">Hao Tu</a>, Based on <a href="http://icodeit.org/about-me">Juntao Qiu</a></p>
</footer>
</body>
</html>