-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmedicine_form_1.html
More file actions
59 lines (52 loc) · 1.87 KB
/
medicine_form_1.html
File metadata and controls
59 lines (52 loc) · 1.87 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./reset.css" rel="stylesheet">
<link href="./nav.css" rel="stylesheet">
<link href="./medicine_form_1.css" rel="stylesheet">
<title>ryak</title>
</head>
<body>
<nav>
<h1>투여약 정보 선택</h1>
<a class="right-button">
<p>취소</p>
</a>
</nav>
<section class="med-info-section">
<div class="med-info-container">
<h1 class="container-title">투여약 이름</h1>
<input id="input-med-name" class="med-name-input" type="text" placeholder="투여약의 이름을 입력하세요.">
</div>
<div id="div-med-kind" class="med-info-container">
<h1 class="container-title">투여약 종류 선택</h1>
<a class="med-type-button">캡슐</a>
<a class="med-type-button">정제</a>
<a class="med-type-button">액체</a>
<a class="med-type-button">국소성</a>
<a class="med-type-button">기기</a>
<a class="med-type-button">로션</a>
<a class="med-type-button">분무제</a>
</div>
<div class="med-info-container">
<h1 class="container-title">투여약 용량 입력</h1>
<input id="input-med-dose" class="med-name-input" type="text" placeholder="투여약의 용량을 입력하세요.">
</div>
<div id="div-med-dose-unit" class="med-info-container">
<h1 class="container-title">투여약 단위 선택</h1>
<a class="med-type-button">mg</a>
<a class="med-type-button">mcg</a>
<a class="med-type-button">g</a>
<a class="med-type-button">mL</a>
<a class="med-type-button">%</a>
</div>
<div class="med-info-container">
<a class="go-next-button">다음</a>
</div>
<script src="./nav.js"></script>
<script src="./medicine_form_1.js"></script>
</section>
</body>
</html>