-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (79 loc) · 3.7 KB
/
index.html
File metadata and controls
81 lines (79 loc) · 3.7 KB
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
<!DOCTYPE html>
<html lang="ko">
<head>
<title>홍길동님의 미니홈피 :: 사이좋은 사람들, 싸이월드</title>
<link href="./styles/index.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/3e84a3303b.js" crossorigin="anonymous"></script>
<script src="./index.js"></script>
</head>
<body>
<div class="background">
<div class="outerbox">
<div class="wrapper">
<div class="wrapper__left">
<div class="wrapper__left__header">
<!-- TODAY 0 | TOTAL 12345 -->
<div class="today">
<span>TODAY</span>
<span>0</span>
<span> | TOTAL</span>
<span>12345</span>
</div>
</div>
<div class="wrapper__left__body">
<div class="left__body__header">
<div class="left__body__header__gray"></div>
<div class="left__body__header__line"></div>
</div>
<div class="left__body__profile">
<div id="profile" class="left__body__profile__name">
<i class="fa-solid fa-user"></i>
<span>이름</span>
</div>
<div id="profile" class="left__body__profile__phone">
<i class="fa-solid fa-phone"></i>
<span>Phone</span>
</div>
<div id="profile" class="left__body__profile__email">
<i class="fa-regular fa-envelope"></i>
<span>E-mail</span>
</div>
<div id="profile" class="left__body__profile__instar">
<i class="fa-solid fa-star"></i>
<span>인스타그램</span>
</div>
</div>
<div class="left__body__footer">
<div class="feel__title">오늘의 기분</div>
<select class="feel__select">
<option>😊기쁨 </option>
<option>😭슬픔 </option>
<option>😡화남 </option>
<option>😔근심 </option>
</select>
</div>
</div>
</div>
<div class="wrapper__right">
<div class="wrapper__right__header">
<div class="right__header__title">
사이좋은 사람들 싸이월드
</div>
<div class="right__header__setting">
사생활보호설정
</div>
</div>
<div class="wrapper__right__body">
<iframe id="contentFrame" src="./home.html"></iframe>
</div>
</div>
<div class="navigation">
<div class="navigation__item" id="menuHome" onclick="menuHome()">홈</div>
<div class="navigation__item" id="menuJukebox" onclick="menuJukebox()">쥬크박스</div>
<div class="navigation__item" id="menuGame" onclick="menuGame()">게임</div>
</div>
</div>
</div>
</div>
</body>
</html>