chromium/chrome/browser/resources/app_home/app_home.html

<!--
Copyright 2022 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->

<!doctype html>
<html class="loading">
<head>
  <meta charset="utf-8">
  <meta name="color-scheme" content="dark">
  <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
  <link rel="stylesheet" href="chrome://resources/css/md_colors.css">
  <base href="chrome://apps">
  <title>$i18n{appHomeTitle}</title>
  <script type="module" src="app_list.js"></script>
  <script type="module" src="deprecated_apps_link.js"></script>
</head>
<style>
  body {
    height: 100%;
    margin: 0;
  }
</style>
<body>
  <deprecated-apps-link></deprecated-apps-link>
  <app-list></app-list>
</body>
</html>