-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct.html
More file actions
72 lines (52 loc) · 2.02 KB
/
product.html
File metadata and controls
72 lines (52 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<!--========================-->
<!--※※【網頁顯示資訊設定】※※-->
<!--========================-->
<!--使用編碼-->
<meta charset="UTF-8">
<!--頁籤設定-->
<title>TheF2E Week3: Admin Order</title>
<link rel="shortcut icon" href="img/favicon.ico">
<!--把螢幕解析度的寬度變成載具的寬度(RWD用)-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--網站描述與關鍵字設定-->
<meta name="description" content="此網站為書豪參加TheF2E的第三週作品">
<meta name="keywords" content="TheF2E, Week3, Admin Order">
<!--網站貼在Facebook上時顯示的資訊-->
<meta property="og:title" content="TheF2E Week3: Admin Order">
<meta property="og:description" content="此網站為書豪參加TheF2E的第三週作品">
<meta property="og:type" content="website">
<meta property="og:url" content="">
<meta property="og:image" content="img/TheF2E.jpg">
<!--IE相容性設定-->
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<!--載入Font Awesome的Icons-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<!--載入CSS-->
<link rel="stylesheet" href="css/CSSReset.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/product.css">
<!--載入jQuery-->
<script src="js/jquery-2.2.3.min.js"></script>
</head>
<body>
<!--主選單-->
<div class="header">
<div class="headBox">
<h1 class="mainLogo">Shoptime</h1>
<ul class="mainMenu">
<li><a href="index.html" style="width: 90px;">HOME</a></li>
<li><a href="orders.html" style="width: 109px;">ORDERS</a></li>
<li class="current"><a href="product.html" style="width: 121px;">PRODUCT</a></li>
</ul>
<div class="userTitle">ADMIN</div>
<div class="clearfix"></div>
</div>
</div>
<!--內容-->
<div class="wrap">
</div>
</body>
</html>