-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
47 lines (43 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Index-Gaetalk</title>
<link rel="stylesheet" href="css/styles.css"/>
</head>
<body>
<div class="status-bar">
<div class="status-bar__column">
<span>누나 안 보임</span>
<i class="fas fa-wifi"></i>
</svg>
</div>
<div class="status-bar__column">
<span>저녁 밥 20분 전</span>
</div>
<div class="status-bar__column">
<span>200% 배고픔 </span>
<i class="fas fa-bone"></i>
</div>
</div>
<header class="welcome-header">
<h1 class="welcome-header__title">개톡에 온 걸 환영해멍!</h1>
<p class="welcome-header__text">만약 멍멍 계정이 있다면,<br>이메일이나 휴대폰 번호로 로그인 해 줘!
</p>
</header>
<form action="friends.html" method="get" id="login-form">
<input name="username" type="text" placeholder="Email or phone number" />
<input name="password" type="password" placeholder="Password" />
<input type="submit" value="Log In" />
<a href="#">멍멍 계정이나 비밀번호를 잊어버렸다고?!<br>이걸 클릭 해!</a>
</form>
<div id="no-mobile">
<span>으악! 잘 좀 조절해보라멍!</span>
</div>
<script
src="https://kit.fontawesome.com/d5fbb687f5.js"
crossorigin="anonymous"
></script>
</body>
</html>