-
Notifications
You must be signed in to change notification settings - Fork 63
/
index.html
51 lines (48 loc) · 2.27 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
<!DOCTYPE html>
<html lang="zh-tw">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="背不起來的就寫下來吧。">
<meta property="og:type" content="website">
<meta property="og:title" content="Gua's Note">
<meta property="og:url" content="https://guahsu.io/">
<meta property="og:site_name" content="Gua's Note">
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-84594235-4', 'auto');
ga('send', 'pageview');
</script>
<title>JavaScript30 - Course List | Gua's Note</title>
<link rel="stylesheet" href="style.css?20171123001">
</head>
<body>
<div class="container">
<div class="head">
<h1 class="head__title">JavaScript 30</h1>
<div class="head__info"></div>
<div class="head__desc">
這是一個由加拿大的全端工程師Wes Bos建立的一系列課程,主旨在不使用任何外部框架與函式庫來完成30個純JavaScript的練習,在這系列練習中可以學到很多基礎且有趣的DOM操作與各種原生API應用,我在這系列收穫了很多經驗與想法,雖然影片是英文發音英文字幕,但跟著操作並不會真的太困難,也隨時可以暫停去查單字XD!真的很建議去閱讀影片跟著玩看看:)!</div>
<div class="head__info">
<a class="head__btn" href="https://javascript30.com/" onclick="ga('send', 'event', 'button', 'click', 'js30-website', 1);"
target="_blank">JS30課程連結 </a> |
<a class="head__btn" href="https://github.com/guahsu/JavaScript30" onclick="ga('send', 'event', 'button', 'click', 'js30-github-head', 1);"
target="_blank">我的GitHub</a>
</div>
</div>
<ul class="courseList"></ul>
</div>
<script src="script.js?20180429"></script>
</body>
</html>