-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.html
47 lines (44 loc) · 1.57 KB
/
bootstrap.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
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 实例 - 简单的轮播(Carousel)插件</title>
<link href="/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<script src="/jquery/1.11.3/jquery.min.js"></script>
<script src="/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<link href="/toc/toc.css" rel="stylesheet">
<script src="/toc/toc.js"></script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
</head>
<body>
$$a^2 + b^2 = c^2$$
<div class="alert alert-success">成功!很好地完成了提交。</div>
<div class="alert alert-info">信息!请注意这个信息。</div>
<div class="alert alert-warning">警告!请不要提交。</div>
<div class="alert alert-danger">错误!请进行一些更改。</div>
Here is an example MathJax inline rendering \\( 1/x^{2} \\), and here is a block rendering:
\\[ \frac{1}{n^{2}} \\]
<div id="main_content">
<h1>title</h1>
<h2>subtitle11</h2>
<h2>subtitle12</h2>
<h1>title2</h1>
<h2>subtitle21</h2>
<h2>subtitle22</h2>
</div>
<blockquote>
<p>This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.</p>
<p>Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse
id sem consectetuer libero luctus adipiscing</p>
</blockquote>
<div>
<script type="text/javascript" charset="utf-8">
$('#main_content').toc({
showAlways:true
});
</script>
</div>
</body>
</html>