-
Notifications
You must be signed in to change notification settings - Fork 9
/
features.html
84 lines (73 loc) · 2.45 KB
/
features.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
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Roboto:400,100,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body id="features-page">
<div class="header">
<div class="container">
<div class="logo">
<a href="index.html">
<img src="images/logo_white.png" />
</a>
</div>
<div class="navigation">
<a href="features.html">FEATURES</a>
<a href="pricing.html">PRICING</a>
<a href="team.html">TEAM</a>
</div>
<div class="clear-floats"></div>
</div>
</div>
<div class="content">
<div class="container">
<div class="feature">
<div class="icon">
<img src="images/school_icon.png" />
</div>
<div class="title">
SEARCH BY SCHOOL
</div>
<div class="writeup">
Roomie is a system that is designed for Universities and
Colleges around Canada. To help with your search, you can
start by specifying which institution you're going to to
help narrow down your search bringing you closer to your
ideal roomate.
</div>
</div>
<div class="feature">
<div class="icon">
<img src="images/star_icon.png" />
</div>
<div class="title">
RATING SYSTEM
</div>
<div class="writeup">
Afraid you might end up with a nightmare roomie? No worries!
Our rating system allows users to rate other users to you
get vetted reviews of who you might end up with!
</div>
</div>
<div class="feature">
<div class="icon">
<img src="images/user_icon.png" />
</div>
<div class="title">
PERSONALITY MATCHING
</div>
<div class="writeup">
When you sign up for Roomie, you are presented with a simple
questionnaire. Then when you go searching, our system will
intelligently match you to people that are similar to you.
It couldn't be easier!
</div>
</div>
<div class="clear-floats"></div>
<div class="button-container">
<a href="pricing.html" class="button">BROWSE PRICING ></a>
</div>
</div>
</div>
</body>
</html>