-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
101 lines (100 loc) · 3.35 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Friends </title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="top-header">
<div class="header__top">
<div class="header__column">
<i class="fa fa-fighter-jet"></i>
<i class="fa fa-wifi"></i>
</div>
<div class="header__column">
<span class="header__time">11:11</span>
</div>
<div class="header__column">
<i class="fa fa-moon-o"></i>
<i class="fa fa-bluetooth-b"></i>
<span class="header_battery">111% <i class="fa fa-battery-full"></i></span>
</div>
</div>
<div class="header__bottom">
<div class="header__column">
<span class="header__text">Manage</span>
</div>
<div class="header__column">
<span class="header__text">Friends<span class="header__number">1</span></span>
</div>
<div class="header__column">
<i class="fa fa-cog fa-lg"></i>
</div>
</div>
</header>
<main class="friends">
<div class="search-bar">
<i class="fa fa-search"></i>
<input type="text" name="" value="" placeholder="Find friends, more, Plus Friends">
</div>
<section class="friends__section">
<header class="friends__section-header">
<h6 class="friends__section-title">My Profile</h6>
</header>
<div class="friends__section-rows">
<div class="friends__section-row">
<img src="images/avatar.jpg" alt="">
<a href="profile.html" class="friends__section-name">
HYUNSIK
</a>
</div>
<div class="friends__section-row">
<img src="images/avatar.jpg" alt="">
<span class="friends__profile-name">Friends' Name Display</span>
</div>
</div>
</section>
<section class="friends__section">
<header class="friends__section-header">
<h6 class="friends_section-title">Friends</h6>
</header>
<div class="friends__section-rows">
<div class="friends__section-row with-tagline">
<div class="friends__section-column">
<img src="images/avatar.jpg" alt="">
<span class="friends__section-name">Nicolas</span>
</div>
<span class="friends__section-tagline">
YOU ONLY LIVE ONCE, LIVE NOW DIE LATER
</span>
</div>
</div>
</section>
</main>
<nav class="tab-bar">
<a href="index.html " class="tab-bar__tab tab-bar__tab--selected">
<i class="fa fa-user"></i>
<span class="tab-bar__title">Friends</span>
</a>
<a href="chats.html" class="tab-bar__tab">
<i class="fa fa-comment"></i>
<span class="tab-bar__title">Chats</span>
</a>
<a href="find.html" class="tab-bar__tab">
<i class="fa fa-search"></i>
<span class="tab-bar__title">Find</span>
</a>
<a href="more.html " class="tab-bar__tab">
<i class="fa fa-ellipsis-h"></i>
<span class="tab-bar__title">More</span>
</a>
</nav>
<div class="bigScreenText">
<span>Please Make Your Screen Smaller</span>
</div>
</body>
</html>