-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (49 loc) · 2.05 KB
/
index.html
File metadata and controls
50 lines (49 loc) · 2.05 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
43
44
45
46
47
48
49
50
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="Author" content="hancel.lin">
<meta name="Keywords" content="HTML,Code,代码高亮,公众号,网页">
<meta name="Description" content="公众号高亮代码生成器">
<title> 公众号高亮代码生成器 </title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link href="css/styles.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/default.min.css">
<script type="text/javascript" src="js/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="js/highlight.min.js"></script>
<script type="text/javascript" src="js/do.js" ></script>
</head>
<body>
<header><h1 title="Input Your Code">Code Creater</h1></header>
<section>
<label for="lang">Language</label>
<input type="text" id="lang" value="c" />
<label for="width">Min Width</label>
<input type="text" id="width" value="400" />
</section>
<section>
<p>
<textarea name="code" cols="30" rows="10" id="code">#include<stdio.h>
int main()
{
printf("Hello World!");
return 0;
}</textarea>
</p>
<p>
<input type="submit" value="Code" name="preview" id="preview" />
</p>
<div id="result">
<pre style="overflow-x:auto;"><code id="view" style="font-size: 0.85em;font-family: Consolas, Inconsolata, Courier, monospace;margin: 0px 0.15em;padding: 0px 0.3em;white-space: pre-wrap;background-color: rgb(248, 248, 248);display: inline;white-space: pre;overflow: auto;padding: 0.5em 0.7em;display: block !important;display: block;overflow-x: auto;padding: 0.5em;color: rgb(51, 51, 51);background: rgb(248, 248, 248);text-size-adjust: none;">
</code></pre>
</div>
<p>
<input type="submit" value="Copy Result" name="copy" id="copy"/>
</p>
</section>
<footer>
<p>Copyright © 2016 <a href="http://sxisa.com" target="_blank">ISA.</a></p>
<div class="tongji"><<script src="https://v1.cnzz.com/z_stat.php?id=5643392&web_id=5643392" language="JavaScript"></script></div>
</footer>
</body>
</html>