-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
79 lines (73 loc) · 4.17 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="Find Your Dream Neighborhood">
<meta name="keywords" content="local,neighborhood,seattle">
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>Locale Finder: Find Your Dream Neighborhood</title>
<!--Common Style Sheets-->
<link rel="stylesheet" type="text/css" href="./css/reset.css" />
<link rel="stylesheet" type="text/css" href="./css/html-semantics.css" />
<link rel="stylesheet" type="text/css" href="./css/layout.css" />
<link rel="stylesheet" type="text/css" href="./css/brand.css" />
<!-- end -->
<link rel="stylesheet" type="text/css" href="./css/index.css" />
<link rel="stylesheet" type="text/css" href="./css/slide.css" />
<link href="https://fonts.googleapis.com/css?family=Inconsolata:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Philosopher" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<!-- Header Footer Load Script -->
<script type="text/javascript" src="./js/loadHeaderFooter.js"></script>
<!--Other Scripts-->
<script type="text/javascript" src="./js/slide.js"></script>
</head>
<body itemscope itemtype="http://schema.org/WebPage">
<header id='header' itemtype="http://schema.org/WPHeader"></header>
<main id="indexMain" class='bg-main display-main'>
<div class="icon" id="left"><i class="fa fa-angle-left"></i></div>
<div id="backgroundMask">
<h2 id="sliderHeader" itemprop="description">Find Your Dream Neighborhood</h2>
<h3 id="sliderPara" itemprop="description">We care what matters to you</h3>
<p id="moreBtn"><a href="#indexSub" class="buttonHover"><span>LEARN MORE</span></a></p>
</div>
<div class="icon" id="right"><i class="fa fa-angle-right"></i></div>
</main>
<article id="indexSub" class="lf-bg">
<div class="card-container desktopLayout">
<section class="lf-card-2">
<figure><img src="./image/seattle.jpg" alt="Get Suggestion for a neighborhood" /></figure>
<div class="lf-card-block">
<h4 class="lf-card-title">New to Seattle!</h4>
<br/>
<p class="lf-card-text">Welcome to Seattle! We would love to suggest top 3 areas which are best fit for you and help you find your dream neighborhood.</p>
<br/>
<div><a href="/html/sliderQuestions.html" class="lf-button lf-button-brand ">GET STARTED</a></div>
</div>
</section>
<section class="lf-card-2">
<figure><img src="./image/downtown.jpg" alt="Find more about a neighborhood" /></figure>
<div class="lf-card-block">
<h4 class="lf-card-title">Already know the neighborhood you like?</h4>
<br/>
<p class="lf-card-text">Awesome!!! Let us help you explore more on your choice of the neighborhood and provide you more detailed information about it.</p>
<br/>
<div><a href="/html/map.html" class="lf-button lf-button-brand ">GET STARTED</a></div>
</div>
</section>
<section class="lf-card-2">
<figure><img src="./image/southLake.jpg" alt="Compare two neighborhoods" /></figure>
<div class="lf-card-block">
<h4 class="lf-card-title">Would like to compare neighborhoods?</h4>
<br/>
<p class="lf-card-text">Confused which one to choose. Compare two neighborhoods of your choice with respect to each criteria and make the right choice.</p>
<br/>
<div><a href="/html/CompareNeighborhoods.html" class="lf-button lf-button-brand ">GET STARTED</a></div>
</div>
</section>
</div>
</article>
<footer id='footer'></footer>
</body>
</html>