1<!doctype html> 2<html lang="zh"> 3<head> 4 <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"/> 5 <meta http-equiv="cache-control" content="no-cache"/> 6 <meta http-equiv="Pragma" content="no-cache"/> 7 <meta charset="UTF-8"> 8 <meta name="viewport" content="width=device-width, initial-scale=1"> 9 <title>Memory Dotting</title> 10 <style>* { 11 box-sizing: border-box; 12 } 13 14 html, 15 body { 16 height: 100%; 17 margin: 0; 18 padding: 0; 19 overflow: hidden; 20 } 21 </style> 22</head> 23<body> 24<script src="memory/MainMemory.js" type="module"></script> 25<main-memory></main-memory> 26</body> 27</html> 28