-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmembers.html
More file actions
94 lines (76 loc) · 3.74 KB
/
members.html
File metadata and controls
94 lines (76 loc) · 3.74 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
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js"
integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V"
crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" as="style" crossorigin
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css" />
<link rel="stylesheet" href="./src/css/guestbook.css" />
<style>
</style>
<script type="module" src="./src/js/kiha.js"></script>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./src/css/common.css" />
<link rel="stylesheet" href="./src/css/ahyun.css" />
</head>
<body>
<!-- JavaScript 파일 연결 -->
<script src="./src/js/reenacts.js"></script>
<!-- 헤더 내비게이션 바바 -->
<header id="header-box" class="d-flex align-items-center justify-content-center py-3 w-100">
<ul class="nav nav-pills">
<li id="logo" class="nav-item d-flex justify-content-center">
<a href="./index.html" class="d-flex justify-content-center">
<img src="./asset/찍먹파 로고.png" width="10%" alt="찍먹파 로고">
</a>
</li>
</ul>
</header>
<!--방명록 위쪽 상자-->
<div class="showBox">
<div class="box" id="box">
<!-- 방명록 이미지, 이름, 텍스트, 하트 상자 -->
<div class="upper">
<img class="upperImg" id="randomImage" src="">
<input type="text" class="upperName" id="idname" value="이름">
<input type="text" class="upperText" id="idtext" value="글">
<span onclick="" class="upperHeart" id="heartBtn">🧡</span>
<span class="upperCount">0</span>
</div>
<!--방명록 날짜, 수정버튼, 삭제버튼-->
<div class="under">날짜<span class="underDate" id="date">(00.00.00)</span>
<button class="inputBtn" id="editBtn" data-stuff="">수정</button>
<button class="inputBtn" id="delBtn" data-stuff="">삭제</button>
</div>
</div>
</div>
<!--방명록 하단 입력 상자-->
<div class="inputBox">
<div class="input">
<input type="text" class="nameInput" id="name" placeholder="이름"></textarea>
<input type="text" class="textInput" id="text" placeholder="내용"></textarea>
<button class="inputBtn" id="inputBtn">작성</button>
</div>
</div>
<!-- footer -->
<footer id="footer-box"
class="d-flex flex-wrap justify-content-between my-4 align-items-center py-3 border-top w-100"
style="margin-bottom: 0px;">
<div class="col-md-4 ms-3">
<p class="mb-0 text-body-secondary footer-p ms-3">내일배움캠프</p>
<p class="mb-0 text-body-secondary footer-p ms-3">미니 프로젝트</p>
<p class="mb-0 text-body-secondary footer-p ms-3">성재현, 윤예진, 조아현, 채정민, 황기하</p>
</div>
<a href=""
class="col-md-4 d-flex align-items-center justify-content-center mb-3 mb-md-0 me-md-auto link-body-emphasis text-decoration-none">
<img src="./asset/찍먹파 로고.png" id="footer-image" width="25%">
</a>
</footer>
</body>
</html>