forked from jewelfarazi/facebook_app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (65 loc) · 2.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Facebook App</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript"></script>
</head>
<body>
<div id="layout">
<div class="left_col left">
<div class="search_box">
<form action="#" method="get">
<input name="search" class="search" placeholder="Find Friends">
</form>
</div><!--End search box-->
<div class="friend_list">
</div><!--End friend list-->
</div><!--End left column-->
<div class="right_col right">
<div class="welcome_info">
<h3 class="left">Welcome, <a href="#">Jewel Farazi</a></h3>
<a href="#" class="right facebook-button" id="postToWall" data-url="">
<span class="plus">Invite Friends</span>
</a>
<!--
<a href="#" class="facebook-button speech-bubble" id="sendToFriends" data-url="">
<span class="speech-bubble">Send Message</span>
</a>
<a href="#" class="facebook-button apprequests" id="sendRequest" data-message="Test this awesome app">
<span class="apprequests">Send Requests</span>
</a>
-->
<div class="clear"></div>
</div><!--End welcome info-->
<div class="user_info">
<div class="user_img left">
<a href="#"><img src="me.jpg" width="135"></a>
</div><!--End user image section-->
<div class="user_opt right">
<div class="user_log">
<p><h3><a href="#">Jewel Farazi</a></h3></p>
<p><i class="work"></i>C.E.O at Vegabond Inc.</p>
<p><i class="study"></i>Studied at Institue of Computer Science & Technology</p>
<p><i class="relation"></i>It's complicated.</p>
<p><i class="home"></i>From Noakhali, Bangladesh.</p>
<p><i class="birth"></i>Born on 12 November 1986</p>
</div>
<a href="#" class="facebook-button apprequests" id="sendRequest" data-message="Test this awesome app">
<span class="apprequests">Post to wall</span>
</a>
<a href="#" class="facebook-button speech-bubble" id="sendToFriends" data-url="">
<span class="speech-bubble">Send Message</span>
</a>
</div><!--End user all information-->
<div class="clear"></div>
</div><!--End User info-->
<div class="details">
</div><!--End user details-->
</div><!--End right column-->
<div class="clear"></div>
</div><!--End main page layout-->
</body>
</html>