-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (100 loc) · 3.32 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
<!DOCTYPE html>
<html lang="ko">
<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">
<link rel="stylesheet" href="css/style.css">
<title>friends</title>
</head>
<body>
<header class="top-header">
<div class="header__top">
<div class="header__column">
<i class="fa fa-plane"></i>
<i class="fa fa-wifi"></i>
</div>
<div class="header__column">
<div class="header__time">18:38</div>
</div>
<div class="header__column">
<i class="fa fa-moon-o"></i>
<i class="fa fa-bluetooth-b"></i>
<span class="header__battery">66% <i class="fa fa-battery-full"></i></span>
</div>
</div>
<div class="header__bottom">
<div class="header__column">
<span class="header__txt">Manage</span>
</div>
<div class="header__column">
<span class="header__txt">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="frineds">
<div class="search-bar">
<i class="fa fa-search"></i>
<input type="text" placeholder="Find friends, chats, 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">
<span class="friends__section-name">ann kim</span>
</a>
</div>
<div class="friends__section-row">
<img src="images/avatar.jpg" alt="">
<span class="friends__section-name">frineds' name Display</span>
</div>
</div>
</section>
<section class="friends__section">
<header class="friends__section-header">
<h6 class="friends__section-title">Frineds</h6>
</header>
<div class="friends__section-rows">
<div class="friends__section-row width-tagline">
<div class="friends__section-column">
<img src="images/avatar.jpg" alt="">
<span class="friends__section-name">LYNN</span>
</div>
<span class="friends__section-tagline">
Life is short. So live your life.
</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">Frinds</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">Finds</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="bgScreenTxt">
<span>Please make screen smaller</span>
</div>
</body>
</html>