This repository has been archived on 2025-01-09. You can view files and clone it, but cannot push or open issues or pull requests.

22 lines
548 B
HTML
Raw Permalink Normal View History

2025-01-09 18:30:49 +08:00
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>自定义菜单</title>
<style>
* {
margin: 0.75rem 0.25rem;
}
</style>
</head>
<body>
<h2>自定义菜单</h2>
<button id="addMenu">创建自定义菜单</button>
<br>
<input type="text" placeholder="输入自定义菜单项内容" id="menuCon">
<br>
<button id="addItem">添加菜单项</button>
<script src="index.js"></script>
</body>
</html>