-
Notifications
You must be signed in to change notification settings - Fork 0
/
HomePage.html
30 lines (25 loc) · 937 Bytes
/
HomePage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PN - Home</title>
<link rel="shortcut icon" type="image" href="">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="./HomePage.css">
<link rel="icon" type="image/x-icon" href="img/pnw-rbg.png">
</head>
<body>
<div class="container">
<div class="one-half left">
<h1>Come find like minded people<br>and make new friends!</h1>
<a href="ComSwipe.html" class="cta">Communities!</a>
</div>
<div class="one-half right">
<h1>Tired of regular old food?<br>What do others in RIT suggest?</h1>
<a href="MesSwipe.html" class="cta">Food Navigator!</a>
</div>
</div>
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="./HomePage.js"></script>
</body>
</html>