chore(lib): update user guide
This commit is contained in:
parent
b56530bf92
commit
2328a7251a
1 changed files with 6 additions and 1 deletions
|
|
@ -102,7 +102,12 @@ Using your favorite text editor, create a file named `index.html` with the follo
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>My Minesweeper Game</title>
|
<title>My Minesweeper Game</title>
|
||||||
<script type="module" src="main.js"></script>
|
<style>
|
||||||
|
html, body {
|
||||||
|
background-color: black;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>My Minesweeper Game</h1>
|
<h1>My Minesweeper Game</h1>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue