any-rule/public/index.html

57 lines
1.6 KiB
HTML
Raw Normal View History

2019-06-25 13:30:32 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2019-06-28 09:15:14 +08:00
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width" />
2019-06-25 17:29:07 +08:00
<!-- <link rel="icon" href="<%= BASE_URL %>favicon.ico"> -->
2019-06-28 09:15:14 +08:00
<title>正则大全</title>
<!-- 百度统计 -->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?0a8aba0d0567d5e3b7fa2c9eac9d781f";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<!-- <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.8/styles/github.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.8/highlight.min.js"></script> -->
2019-06-25 13:30:32 +08:00
<style>
* {
padding: 0;
margin: 0;
2019-06-25 16:08:42 +08:00
box-sizing: border-box;
2019-06-25 13:30:32 +08:00
}
2019-06-25 17:29:07 +08:00
2019-06-28 09:15:14 +08:00
body {
overflow-x: hidden;
overflow-y: scroll;
2019-06-25 17:29:07 +08:00
}
2019-06-28 09:15:14 +08:00
a {
text-decoration: none;
}
2019-06-25 17:29:07 +08:00
input {
outline: none;
border: 0 none;
2019-06-25 13:30:32 +08:00
}
li {
list-style-type: none;
}
</style>
</head>
<body>
<noscript>
<strong>We're sorry but any-rule doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>