-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (89 loc) · 3.99 KB
/
index.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="zh-Hant-TW">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vue 作品實戰班 - 作業繳交</title>
<meta property="og:title" content="Vue 作品實戰班 | 六角學院" />
<meta
property="og:description"
content="本課程將帶你做出兼具美感與實力的電商網站,從做中學並累積作品集,也同時加深加廣 JS 觀念!我們將藉由「觀念x框架x實戰 = 求職面試作品」的宗旨,極速帶你經歷實戰!"
/>
<meta property="fb:app_id" content="760173380749493" />
<meta property="og:site_name" content="六角學院" />
<meta property="og:locale" content="zh_TW" />
<meta
property="og:image"
content="https://firebasestorage.googleapis.com/v0/b/hexschool-api.appspot.com/o/tutorials%2Fjs-training-1st%2Ffb-ogimage.png?alt=media&token=e3b367d4-6391-4d8f-af3b-5364030de06d"
/>
<link rel="icon" href="./image/favicon.ico" />
<meta
content="本課程將帶你做出兼具美感與實力的電商網站,從做中學並累積作品集,也同時加深加廣 JS 觀念!我們將藉由「觀念x框架x實戰 = 求職面試作品」的宗旨,極速帶你經歷實戰!"
name="description"
/>
<meta
content="線上課程, 網頁設計, 前端, HTML, CSS, jQuery, javascript"
name="keywords"
/>
<meta content="六角學院" name="author" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
crossorigin="anonymous"
/>
</head>
<body>
<header class="header mb-5 d-flex justify-content-center">
<div class="character"></div>
<div class="logo"></div>
</header>
<div class="container">
<h1 class="h3 text-center">Vue 作品實戰班 - 作業繳交</h1>
<div class="row justify-content-center">
<div class="col-8">
<div class="list-group">
<a
href="https://codepen.io/collection/dbpoLP"
class="list-group-item list-group-item-action"
>第一週 - 關注點分離 產品列表</a
>
<a
href="./week2/index.html"
class="list-group-item list-group-item-action"
>第二週 - 介接一個 API</a
>
<a
href="./week3/login.html"
class="list-group-item list-group-item-action"
>第三週 - Vue 起步走之產品列表</a
>
<a
href="./week4/index.html"
class="list-group-item list-group-item-action"
>第四週 - 元件化</a
>
<a
href="./week5/index.html"
class="list-group-item list-group-item-action"
>第五週 - 表單驗證</a
>
<a
href="./week6/dist/index.html"
class="list-group-item list-group-item-action"
>第六週 - 路由驗證</a
>
<!-- <a href="https://github.com/hexschool/live-vue3-training-chapter-works/tree/master/week6" class="list-group-item list-group-item-action">第六週 - 路由驗證(原始碼,需自行下載)</a> -->
<a
href="./week7/dist/index.html"
class="list-group-item list-group-item-action"
>第七週 - 後台版型</a
>
<!-- <a href="https://github.com/hexschool/live-vue3-dashboard/tree/base" class="list-group-item list-group-item-action">第七週 - 後台版型 - 基礎(原始碼,需自行下載)</a> -->
<!-- <a href="https://github.com/hexschool/live-vue3-dashboard" class="list-group-item list-group-item-action">第七週 - 後台版型 - 完整(原始碼,需自行下載)</a> -->
</div>
</div>
</div>
</div>
</body>
</html>