-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
56 lines (53 loc) · 2.12 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
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="ko" style="word-break: keep-all">
<head>
<meta charset="UTF-8" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<header>
<a href="index.html" class="logo">Every<span>Slang</span></a>
</header>
<div>
<div id="user" style="position: relative;" class="button button-clear">
<div> </div>
</div>
</div>
</nav>
<div class="main-content">
<div class="profile-container">
<div class="profile-header">
<div class="profile-avatar" id="avatar"></div>
<h2 class="profile-name" id="name"></h2>
</div>
<div class="profile-stats">
<div class="stat-item">
<div class="stat-value" id="like"></div>
<div class="stat-label">받은 좋아요</div>
</div>
<div class="stat-item">
<div class="stat-value" id="dislike"></div>
<div class="stat-label">받은 싫어요</div>
</div>
</div>
<div class="profile-word-list">
<h3>추가한 단어 목록:</h3>
<ul class="profile-words" id="words"></ul>
</div>
</div>
</div>
<footer class="site-footer">
<div class="container">
<a href="https://github.com/3ae3ae/EverySlang"><img src="/Github.png" style="width: 20px; height: 20px;" alt="Github"> 3ae3ae/EverySlang</a>
</div>
</footer>
<script type="module" src="/src/profile.ts"></script>
</body>
</html>