-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="" content="" charset="UTF-8">
<title>Find'em</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="./App.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-10 col-sm-offset-1 col-md-10 col-md-offset-1 page-header">
<img src="./public/findem-logo.png" alt="Find'em Logo" class="img-responsive img-circle head" width="100" height="100">
<h1 class="head pg-head">Find'em</h1>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-10 col-sm-offset-1 col-md-10 col-md-offset-1">
<div id="app"></div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-10 col-sm-offset-1 col-md-10 col-md-offset-1">
<footer class="footer">
<p class="text-muted">This is a simple ReactJS class project by <a href="https://github.com/nancee1">Nancy Ewurum</a>, <a href="https://github.com/ugofred">Ugochukwu Onyejiaka </a> and <a href="https://github.com/johnotu">John Otu</a>. It can be found in this <a href="https://github.com/johnotu/findem">Github Repo</a></p>
</footer>
</div>
</div>
</div>
<script src="./public/index.js"></script>
</body>
</html>