-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
48 lines (47 loc) · 1.37 KB
/
profile.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
<!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://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Profile</title>
</head>
<body>
<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">18:33</span>
</div>
<div class="header_column">
<i class="fa fa-moon-o"></i>
<i class="fa fa-bluetooth-b"></i>
<i class="fa fa-battery-full"></i>
<span class="header_battery">66%</span>
</div>
</div>
<div class="header_bottom">
<div class="header_column">
<i class="fa fa-times fa-lg"></i>
</div>
<div class="header_column">
</div>
<div class="header_column">
<i class="fa fa-user fa-lg"></i>
</div>
</div>
</header>
<main class="profile">
<header class="profile_header">
<img src="images/avatar.jpg" alt="">
<h3 class="profile_header-title">유원규</h3>
</header>
<input type="text" placeholder="[email protected]">
<div class="profile_actions"></div>
</main>
</body>
</html>