-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (62 loc) · 2.06 KB
/
index.html
File metadata and controls
69 lines (62 loc) · 2.06 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Facebook Redirect</title>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<div id="bluebar">
<p id="header">
facebook redirect
</p>
</div>
<div id="body">
<div class="row">
<div class="col-sm-8">
<p class="title">
Navigation
</p>
<p>
What do you want to use?
</p>
<div class="row" id="icons">
<div class="col-sm-3 col-xs-6 icon">
<a href="http://facebook.com/messages/t/" class="btn btn-default">
<i class="fab fa-facebook-messenger"></i>
<br />
Messenger
</a>
</div>
<div class="col-sm-3 col-xs-6 icon">
<a href="http://facebook.com/events" class="btn btn-default">
<i class="fas fa-calendar"></i>
<br />
Events
</a>
</div>
<div class="col-sm-3 col-xs-6 icon">
<a href="http://facebook.com/groups" class="btn btn-default">
<i class="fas fa-user-friends"></i>
<br />
Groups
</a>
</div>
<div class="col-sm-3 col-xs-6 icon">
<a href="http://facebook.com/pages/?category=liked" class="btn btn-default">
<i class="fas fa-flag"></i>
<br />
Pages
</a>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
this is not facebook
</div>
</body>
</html>