-
Notifications
You must be signed in to change notification settings - Fork 742
/
index.html
53 lines (48 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<title>Angular Friends</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>The <strong>facebook</strong> Friend Machine</h1>
<div class="friends">
<form class="form-inline searchForm" role="form">
<div class="form-group">
<input class="form-control" placeholder="Search Anything About Your Friends">
<select class="input-medium">
<option>Name</option>
<option>#Friends</option>
<option>City</option>
<option>State</option>
<option>Country</option>
</select>
<select class="input-medium">
<option value="-">Descending</option>
<option value="+">Ascending</option>
</select>
</div>
</form>
<ul>
<li class='friend'>
<img class="profile-pic" src='http://placebear.com/50/50.jpg'>
<h3>Cali Fornia</h3>
<div class="location">
Location: New Port Beach, California, United States
</div>
<div class="status">
Status: I hate the snow. I wish I was on the beach right now!!!
</div>
<div class="num-friends">
Friends: 1,367
</div>
</li>
</ul>
</div>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- your scripts here -->
</body>
</html>