Initial commit from create-parcel

This commit is contained in:
Isaac Mills 2025-04-08 07:56:12 -06:00
commit 32aad3bfd3
Signed by: fnmain
GPG key ID: B67D7410F33A0F61
5 changed files with 2088 additions and 0 deletions

13
src/index.html Normal file
View file

@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Parcel Vanilla App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Parcel Vanilla App</h1>
<p>Edit <code>src/index.html</code> to get started!</p>
</body>
</html>

8
src/style.css Normal file
View file

@ -0,0 +1,8 @@
html {
color-scheme: light dark;
font-family: system-ui;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}