forked from cmt77/Easy-Git-Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
slide.html
89 lines (88 loc) · 4.29 KB
/
slide.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
<!Doctype HTML>
<html>
<head>
<meta charset="utf-8">
<meta content="keywords" name="git tutorial">
<meta content="description" name="git tutorial">
<link href="css/bootstrap.min.css" rel="stylesheet" >
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="css/slide.css" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/carousel.js"></script>
<script src="js/scrollside.js"></script>
<title>Basic Git Tutorial</title>
</head>
<body class="well">
<header>
<nav class="navbar navbar-fixed-top">
<div class="navbar-inner">
<a href="index.html" class="brand" style="margin-left:4em;margin-right:30em">Git 教學研究站</a>
<ul class="nav" id="scroll_side">
<li id="learn"><a href="index.html">教學文件</a></li>
<li id='shirei'><a href='shirei.html'>Git 基本指令</a></li>
<li id="start"><a href="start.html">開始使用</a></li>
<li id="try_it"><a href="try.html">自我練習</a></li>
<li class="active" id="sld"><a href="#slide">教學資源</a></li>
</ul>
</div>
</nav>
</header>
<article id="main" >
<section id="slide">
<!--每個 row 是一個文章-->
<div class="row">
<div class="span6">
<h3 style="text-align:center">自由軟體鑄造場 ihower 教學 01</h3><hr>
<iframe width="420" height="315" src="http://www.youtube.com/embed/BJSFGGfpRSU" frameborder="0" allowfullscreen></iframe>
</div>
<div class="span6">
<h3 style="text-align:center">自由軟體鑄造場 ihower 教學 02</h3><hr>
<iframe width="420" height="315" src="http://www.youtube.com/embed/26vazDnt1rE" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div class="row">
<div class="span6">
<h3 style="text-align:center">寫給大家的 Git 教學</h3><hr>
<iframe src="http://www.slideshare.net/slideshow/embed_code/5528339" width="427" height="356" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC;border-width:1px 1px 0;margin-bottom:5px" allowfullscreen webkitallowfullscreen mozallowfullscreen> </iframe> <div style="margin-bottom:5px"> <strong> <a href="http://www.slideshare.net/littlebtc/git-5528339" target="_blank">寫給大家的 Git 教學</a> </strong> from <strong><a href="http://www.slideshare.net/littlebtc" target="_blank">littlebtc</a></strong> </div>
</div>
<div class="span6">
<h3 style="text-align:center">Git Tutorial 教學</h3><hr>
<iframe src="http://www.slideshare.net/slideshow/embed_code/13695342" width="427" height="356" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC;border-width:1px 1px 0;margin-bottom:5px" allowfullscreen webkitallowfullscreen mozallowfullscreen> </iframe> <div style="margin-bottom:5px"> <strong> <a href="http://www.slideshare.net/ihower/git-tutorial-13695342" target="_blank">Git Tutorial 教學</a> </strong> from <strong><a href="http://www.slideshare.net/ihower" target="_blank">Wen-Tien Chang</a></strong> </div>
</div>
</div>
<div class="row">
<div class="span6">
<h3 style="text-align:center">Pro Git 教學讀本</h3>
<a href="http://git-scm.com/book/zh-tw">
<img src="http://i.imgur.com/rNFUfVq.png" style="margin-left:6em"/>
</a>
</div>
<div class="span6">
<h3 style="text-align:center">Git 版本控制精要</h3>
<a href="http://ihower.tw/git/">
<img src="http://i.imgur.com/ivJiT0k.png" width="390px" style="margin-left:6em;padding-bottom:0.35em"/>
</a>
</div>
</div>
</section>
</article>
<hr/>
<footer class="row" style="margin-left:35em">
<div class="container">
<p>
<i class="icon-check icon-black"></i>
本網站資料感謝<a href="http://ihower.tw/git/"> ihower 前輩</a>、<a href="https://zh.wikipedia.org/wiki/Git">維基百科</a>及<a href="https://help.github.com/articles/set-up-git">Github</a>提供
<a href="#"><i class="icon-chevron-up icon-black" id="top"></i></a>
</p>
</div>
</footer>
<script>
$(function(){
$('#top').click(function(){
$('html,body').animate({scrollTop: 0}, 800);
});
})
</script>
</body>
</html>