-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMypage.html
More file actions
60 lines (58 loc) · 2.41 KB
/
Mypage.html
File metadata and controls
60 lines (58 loc) · 2.41 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/Mypage.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Black+Han+Sans&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&display=swap" rel="stylesheet">
<title>DO-ECO</title>
</head>
<body>
<div class="nav">
<h1>DO-ECO</h1>
<div id="button">
<a href="EcoTip.html">ECO-TIP</a>
<a href="eco-rank.html">ECO-RANK</a>
<a href="do-eco.html">DO-ECO</a>
<a href="do-gather.html">DO-GETHER</a>
</div>
</div>
<div class="content">
<div class="Mypage-top">
<img src="./images/mypage.png" id="mypage-image" width="80px" height="80px">
<div class="Mypage-title">
MY PAGE
</div>
</div>
<div class="Mypage-content">
<h2>내 <span>정보</span></h2>
<hr size="4px"; color="#89A95D"; width="90%;">
<div class="my-info">
<img src="./images/profile.png" id="my-image">
<!-- <div class="user-info"> -->
<p id="info-email">E-mail: </p>
<p id="info-email-detail">user@gmail.com</p>
<p id="info-id">ID: </p>
<p id="info-id-detail">userID</p>
<!-- </div> -->
</div>
<h2>내 <span>리워드</span></h2>
<hr size="4px"; color="#89A95D"; width="90%;">
<div class="my-reword">
<img src="./images/reword.png" id="reword-image">
<img src="./images/blink.png" id="reword-blink-image1" class="image blinking">
<img src="./images/blink.png" id="reword-blink-image2" class="image blinking">
<p id="reword-score">100</p>
<button type="button" id="rewordshop-button">리워드 상점 GO!</button>
</div>
</div>
<div class="button-wrapper">
<button type="button" id="logout-button">로그아웃하기</button>
</div>
</div>
</body>
</html>