-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtutorial.html
83 lines (75 loc) · 4.19 KB
/
tutorial.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
<html>
<head>
<title>চা Script - Tutorials</title>
<meta name="description" content="Learn how to code in Cha Script.">
<meta name="keywords" content="learn,code,bengali,programming language,programming,bangla,cha,script,cha script" />
<meta name="robots" content="index,follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" type="image/png" href="images/favicon.png">
<script src="js/jquery.js"></script>
<script src="js/jquery.sticky.js"></script>
<link href="css/bootstrap.css" type="text/css" rel="stylesheet" />
<link href="css/hstyle.css" type="text/css" rel="stylesheet" />
<script>
$(window).load(function(){
$("#header").sticky({ topSpacing: 0 });
});
</script>
<script language="javascript">
function autoResizeDiv()
{
document.getElementById('cnav').style.width = (window.innerWidth-10) +'px' ;
}
window.onresize = autoResizeDiv;
autoResizeDiv();
</script>
</head>
<body>
<div class="head" id="header">
<nav class="cnav" id="cnav">
<img class="logo" src="images/logo2.png" alt="some_text">
<ul class="pull-right">
<li><a href="index.html"><span class="glyphicon glyphicon-home"></span> Home</a> </li>
<li> <a href="code.html"><span class="glyphicon glyphicon-align-left"></span> কোড করুন</a></li>
<li><a href="examples.html"><span class="glyphicon glyphicon-list-alt"></span> Examples</a> </li>
<li><a href="tutorial.html"><span class="glyphicon glyphicon-edit"></span> Tutorial</a> </li>
</ul>
</nav>
</div>
<h1>Short Video Tutorials</h1><br/>
<p><strong>চা স্ক্রিপ্টের সিনটেক্সকে আরও সহজবোধ্য করে তুলে ধরার জন্য কিছু ছোট্ট ভিডিও নির্দেশিকা। আমরা পূর্ণাঙ্গ নির্দেশিকার জন্য কাজ করে যাচ্ছি, আশা করছি অচিরেই আপনাদের কাছে তা পৌঁছে দিতে পারবো।</strong></p>
<p><strong>These short video tutorials are recorded in order to help people understand the syntax of চা Script. We are currently developing full tutorials which will be available very soon.</strong></p>
<br/>
<div class="videos">
<h3>অভ্র ডাউনলোড/ইন্সটল এবং কোড এডিটর পরিচিতি </h3>
<iframe width="854" height="510" src="//www.youtube.com/embed/cd_imhmO_QE" frameborder="0" allowfullscreen></iframe>
<br/><br/>
<h3>দেখাও/নাও (Input/Output)</h3>
<iframe width="854" height="510" src="//www.youtube.com/embed/USf2Lcvzlgk" frameborder="0" allowfullscreen></iframe>
<br/><br/>
<h3>Arithmetic Operators </h3>
<iframe width="854" height="510" src="//www.youtube.com/embed/ethg7zMTWgI" frameborder="0" allowfullscreen></iframe>
<br/><br/>
<h3>যদি/নাহলে (If-Else) </h3>
<iframe width="854" height="510" src="//www.youtube.com/embed/rraAMDp-95k" frameborder="0" allowfullscreen></iframe>
<br/><br/>
<h3>চলবে (Loop)</h3>
<iframe width="854" height="510" src="//www.youtube.com/embed/VzBnEhy5dbw" frameborder="0" allowfullscreen></iframe>
<br/><br/>
<h3>সেট (Array)</h3>
<iframe width="854" height="510" src="//www.youtube.com/embed/6X4h_WWq39c" frameborder="0" allowfullscreen></iframe>
<br/><br/>
<h3>ফাংশন (Function)</h3>
<iframe width="854" height="510" src="//www.youtube.com/embed/EG95wWmaoi0" frameborder="0" allowfullscreen></iframe>
<br/><br/>
</div>
</body>
<script language="javascript">
function autoResizeDiv()
{
document.getElementById('cnav').style.width = (window.innerWidth) +'px' ;
}
window.onresize = autoResizeDiv;
autoResizeDiv();
</script>
</html>