-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathml_tutorial.html
More file actions
42 lines (41 loc) · 1.77 KB
/
Copy pathml_tutorial.html
File metadata and controls
42 lines (41 loc) · 1.77 KB
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
<!doctype html>
<html lang="zh-cn">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Simple Tutorial for the Markup Language</title>
<link rel="stylesheet" href="stylesheets/main_ebony.css" media="all">
<script src="javascripts/bundle.min.js"></script>
<script src="javascripts/ml_tutorial.min.js"></script>
<script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
</head>
<body>
<div class="grid">
<div class="row">
<h2>标记语言(the Markup Language)简明教程</h2>
</div>
<hr>
<div class="row">
<nav class="c1">
<ul>
<li><a class="content-target" title="ml_tutorial_1.ml.js" href="#">1</a></li>
<li><a class="content-target" title="ml_tutorial_2.ml.js" href="#">2</a></li>
<li><a class="content-target" title="ml_tutorial_3.ml.js" href="#">3</a></li>
</ul>
</nav>
<div id="content" class="c7">
<h3>欢迎</h3>
<p>欢迎来到标记语言(the Markup Language)简明教程。</p>
<p>每一部分的教程,都会提供关于ML的一部分内容。每一部分正文部分比较简短,看正文部分,就能很快上手ML;而补充知识在<em>罗嗦一下</em>里面,可以帮助你更加深入地理解ML。</p>
<p>教程按照基础知识,常用元素标签,少用元素标签的顺序进行,推荐按照顺序学习整个教程。</p>
<p>右侧的源代码是学习ML的样例,请好好利用。</p>
</div>
<div class="c4">
<h4>源代码</h4>
<p id="message"></p>
<pre><code id="source"></code></pre>
</div>
</div>
</div>
</body>
</html>