chrome-devtools-frontend
Version:
Chrome DevTools UI
29 lines (27 loc) • 649 B
HTML
<!--
Copyright 2023 The Chromium Authors
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>Basic Console Insight example</title>
<style>
#container {
box-sizing: border-box;
border: 1px solid;
width: 600px;
margin: 1em;
padding: 1em;
background-color: aqua;
}
</style>
</head>
<body>
<div id="container"></div>
<script type="module" src="./loading.js"></script>
</body>
</html>