-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathtry.html
65 lines (65 loc) · 2.38 KB
/
try.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
<!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/try.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 class="active" id="try_it"><a href="#try">自我練習</a></li>
<li id="sld"><a href="slide.html">教學資源</a></li>
</ul>
</div>
</nav>
</header>
<article id="main">
<section id="try">
<div class="row">
<div class="span9">
<object type="application/x-shockwave-flash" data="source/tut_normal.swf" width="800" height="400">
<param name="game" value="source/tut_normal.swf" />
</object>
</div>
</div>
<div class="row">
<div class="span9">
<iframe src="https://docs.google.com/forms/d/1uqrCKtFGui7LhykwiNA-AAElxAJwnYBeMDGtXXlvVko/viewform?embedded=true" width="800" height="500" frameborder="0" marginheight="0" marginwidth="0">載入中…</iframe>
</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>