Initial project set up

This commit is contained in:
emma 2024-10-27 19:31:19 -04:00
parent 4714dfe5d4
commit 8df96d70fa
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/@sakun/system.css">
<link rel="stylesheet" href="style/style.css">
<title>Baxter's Desktop</title>
</head>
<body>
</body>
</html>

View File

@ -0,0 +1,16 @@
/* I may not want to reset margin and padding with a custom CSS framework
Saving it here in case I do though.
*/
/* *, ::before, ::after {
margin: 0;
padding: 0;
} */
html {
font-size: 16px;
}
body {
box-sizing: border-box;
}