chrome-devtools-frontend
Version:
Chrome DevTools UI
28 lines (25 loc) • 559 B
HTML
<!--
Copyright 2023 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Menu example</title>
<style>
#root {
display: flex;
align-items: center;
justify-content: center;
height: 50%;
}
</style>
</head>
<body>
<div id="root"></div>
<script src="./basic.js" type="module"></script>
</body>
</html>