mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/jibo-cli.git
synced 2026-06-15 10:16:20 +00:00
24 lines
498 B
HTML
24 lines
498 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>__skill-page-title__</title>
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
overflow: hidden;
|
||
|
|
background: #000;
|
||
|
|
}
|
||
|
|
#face {
|
||
|
|
width: 1280px;
|
||
|
|
height: 720px;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="face"></div>
|
||
|
|
<script>
|
||
|
|
require('./index');
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|