-
Notifications
You must be signed in to change notification settings - Fork 0
/
yesterday_menu.html
43 lines (43 loc) · 2.12 KB
/
yesterday_menu.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
<!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" />
<meta name="description" content="뭐먹지?는 직장인의 점심 계획 및 메뉴 결정을 간편하게 합니다. 점심 일정을 조율하고 메뉴를 결정하는 번거로움과 작별 인사를 하세요. 점심 스케줄을 쉽게 효율적으로 관리할 수 있도록 도와드립니다." />
<title>뭐먹지? - 어제 먹은 메뉴</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="src/dist/css/layout.css" />
</head>
<body>
<section class="contents_wrap yesterday_menu">
<h1 class="blind">뭐먹지?</h1>
<h2 class="blind">어제 먹은 메뉴</h2>
<div class="contents">
<div class="util">
<a href="guide.html" class="icon icon_arrow">이전</a>
<div class="pagebar type1"></div>
</div>
<div class="title_wrap">
<p class="title_wrap_subject chef">어제 어떤 메뉴를 드셨나요?</p>
<p class="title_wrap_contents">기억이 나지 않는다면 넘어가도 괜찮아요.</p>
</div>
<!-- 개발 :: 유효성 검사 -->
<form>
<div class="text_box">
<label class="type" for="yesterday_menu_text">입력</label>
<input id="yesterday_menu_text" type="text" placeholder="예시) 마라탕" maxlength="16" required />
<p class="text_box_focus">어제 이 메뉴를 드셨군요!</p>
</div>
<button type="submit" class="wide_button" onClick="link()">입력 완료</button>
</form>
<!-- // 개발 :: 유효성 검사 -->
</div>
</section>
<script>
function link(){
location.href = 'dislike_menu.html'
}
</script>
</body>
</html>