-
Notifications
You must be signed in to change notification settings - Fork 0
/
Search.php
56 lines (53 loc) · 1.8 KB
/
Search.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>桃園客家文化館導覽網站</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="loading.js"></script>
<link rel="stylesheet" href ="CSS/Searchstyle.css?v=<?=time()?>">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <!--icon連結的css-->
</head>
<body>
<header>
<button class="menu" id="mobile-menu">☰</button>
<a href ="01.php"><h1>虛擬導覽網站</h1></a>
<nav class="navbar">
<ul class="menu-list">
<li><a href="#">最新消息</a></li>
<li><a href="#">虛擬導覽</a></li>
<li><a href="#">園區資訊</a></li>
<li><a href="Search.php">音樂作品查詢</a></li>
</ul>
</nav>
</header>
<main>
<div class="big"></div>
<nav class=search>
<ul>
<!-- 搜尋表單 -->
<form action="" method="get">
<input type="text" id="search-input" name="q" placeholder="輸入關鍵字">
<button type="submit"><i class="fa fa-search" aria-hidden="true"></i></button>
</form>
</ul>
</nav>
<div class="selectbutton">
<button type="submit">全部</button>
<button type="submit">古典</button>
<button type="submit">抒情</button>
<button type="submit">現代</button>
</div>
<?php
// 引入外部的 PHP 文件
include 'PHP/Search.php';
?>
</main>
<!--
<footer>
Pitohui © All Rights Reserved. | Designed by GGlisten X Cadiis
</footer>-->
</body>
<!--隱藏加載-->
</html>