forked from chhsiao1981/f6a-tw-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.html
59 lines (59 loc) · 1.35 KB
/
list.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>開放藥典</title>
<link rel="stylesheet" href="stylesheets/style.css">
</head>
<body>
<div class="wrapper">
<section class="header">
<img src="images/logo.png" alt="開放藥典">
<ul>
<li><a href="#" class="med-name">搜藥名</a></li>
<li><a href="#" class="med-feature">特徵搜</a></li>
</ul>
</section>
<section class="main">
<div class="main-list">
<div class="list-box">
<img src="" alt="">
<div class="list-info">
<h3>史地擴絲膜衣錠10毫克</h3>
<span>STILNOX FILM-COATED</span>
<div class="list-detail">
<p>藥品來源</p>
<p>適應症</p>
</div>
</div>
</div>
<div class="list-box">
<img src="" alt="">
<div class="list-info">
<h3>史地擴絲膜衣錠10毫克</h3>
<span>STILNOX FILM-COATED</span>
<div class="list-detail">
<p>藥品來源</p>
<p>適應症</p>
</div>
</div>
</div>
<div class="clear-both"></div>
</div>
<div class="pagination">
<ul>
<li><a class="active" href="">1</a></li>
<li><a href="">2</a></li>
<li><a href="">3</a></li>
<li><a href="">4</a></li>
<li><a href="">5</a></li>
</ul>
<div class="clear-both"></div>
</div>
</section>
<section class="footer">
<p>copyright</p>
</section>
</div>
</body>
</html>