forked from peter001019/WebProgrammingProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpicture_page.html
More file actions
76 lines (70 loc) · 2.51 KB
/
Copy pathpicture_page.html
File metadata and controls
76 lines (70 loc) · 2.51 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
<!DOCTYPE html>
<html lang="kor">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="frame.css">
<link rel="stylesheet" href="menu.css">
<link rel="stylesheet" href="picture_page.css">
<title>사진관 예약</title>
</head>
<body class="wrapper">
<script src="calendar.js"></script>
<header>
<img src="로고.svg" name="logo">
<nav>
<div id="logout">로그아웃</div>
<div id="MyPage">MyPage</div>
</nav>
</header>
<main class="container">
<div id="menu">
<div id="menu_title">메뉴</div>
<ul>
<li><a href="#">내 프로필</a></li>
<li><a href="#">사진 보기</a></li>
<li><a href="#">예약 현황</a></li>
<li><a href="#">친구 관리</a></li>
<li><a href="#">포즈 추천</a></li>
</ul>
</div>
<div id="content">
<div id="content_box">
<section>
<h1>사진관 예약</h1><br>
<table class="Calendar">
<thead>
<tr>
<td onClick="prevCalendar();" style="cursor:pointer;"><</td>
<td colspan="5">
<span id="calYear"></span>년
<span id="calMonth"></span>월
</td>
<td onClick="nextCalendar();" style="cursor:pointer;">></td>
</tr>
<tr>
<td>일</td>
<td>월</td>
<td>화</td>
<td>수</td>
<td>목</td>
<td>금</td>
<td>토</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
<form action="/your-backend-url" method="POST">
<button class="submit" type="submit">제출하기</button>
</form>
</section>
</div>
</div>
</main>
<footer>
<b>Contact</b>
<span class="copyright">Han Ok Jung</span>
<span class="email">peter001019@naver.com</span>
</footer>
</body>
</html>