|
@@ -0,0 +1,65 @@
|
|
|
+<!doctype html>
|
|
|
+<html>
|
|
|
+<head>
|
|
|
+<meta charset="utf-8">
|
|
|
+<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
+<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
|
|
|
+<meta name="format-detection" content="telephone=no">
|
|
|
+<meta name="renderer" content="webkit">
|
|
|
+<meta http-equiv="Cache-Control" content="no-siteapp" />
|
|
|
+<link rel="icon" type="image/png" href="/Public/img/favicon.png">
|
|
|
+<link rel="apple-touch-icon-precomposed" href="/Public/img/app-icon72x72@2x.png">
|
|
|
+<title>HTML代码格式化工具</title>
|
|
|
+<meta name="keywords" content="HTML格式化工具,HTML代码格式化" />
|
|
|
+<meta name="description" content="HTML代码格式化工具,输入HTML代码,即可在线进行html代码自动格式化,美化杂乱的HTML代码便于查看编辑。" />
|
|
|
+<link href="/static/index/GS/css/wawa.min.css" rel="stylesheet">
|
|
|
+</head>
|
|
|
+
|
|
|
+<body>
|
|
|
+
|
|
|
+<div class="content">
|
|
|
+ <div class="content-body">
|
|
|
+ <div class="tool-title clearfix">
|
|
|
+ <h1 class="tool-name">HTML格式化工具</h1>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div class="tool-form">
|
|
|
+ <div class="form-field"><textarea name="str" cols="90" rows="10" class="form-textarea form-block resizable" id="tool-form" placeholder="请把你需要格式的HTML代码粘贴到在这里" ></textarea></div>
|
|
|
+ <div class="form-btn">
|
|
|
+ <label for="tabsize">缩进方式:</label>
|
|
|
+ <select name="tabsize" id="tabsize" class="form-input">
|
|
|
+ <option value="1" selected="selected">Tab符缩进</option>
|
|
|
+ <option value="2">2个空格缩进</option>
|
|
|
+ <option value="4">4个空格缩进</option>
|
|
|
+ <option value="8">8个空格缩进</option>
|
|
|
+ </select>
|
|
|
+ <input class="btn btn-success" type="button" onclick="html_format();" value="格式化"/>
|
|
|
+ <input class="btn btn-warning btn-copy" type="button" value="复制结果" data-clipboard-target="#tool-result">
|
|
|
+ </div>
|
|
|
+ <div id="tool-tips"></div>
|
|
|
+ <div class="form-field"><textarea name="res" cols="90" rows="10" class="form-textarea form-block resizable" id="tool-result"></textarea></div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div style="margin-top:20px;">
|
|
|
+<script async src="/static/index/GS/js/adsbygoogle.js"></script>
|
|
|
+<ins class="adsbygoogle"
|
|
|
+ style="display:block"
|
|
|
+ data-ad-client="ca-pub-1509068831215831"
|
|
|
+ data-ad-slot="4534503874"
|
|
|
+ data-ad-format="auto"></ins>
|
|
|
+<script>
|
|
|
+ (adsbygoogle = window.adsbygoogle || []).push({});
|
|
|
+</script>
|
|
|
+</div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+<div id="go-top" style="display:none;">
|
|
|
+ <a rel="nofollow" title="回顶部"><i class="icon-up-big"></i></a>
|
|
|
+</div>
|
|
|
+</div>
|
|
|
+<script type="text/javascript">var APP='/';var PUBLIC='/Public/';var URL='/home/htmlformat/';var TID=56;</script>
|
|
|
+<script src="/static/index/GS/js/public.min.js"></script>
|
|
|
+<script src="/static/index/GS/js/htmlformat.min.js"></script>
|
|
|
+</body>
|
|
|
+</html>
|