🤡 Mockup of default html/css page for center divi

This commit is contained in:
z3rOR0ne 2022-10-04 21:22:46 -07:00
parent 9c6f44fac0
commit 9691a53840
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Default HTML</title>
<link rel="stylesheet" href="default_styles.css">
</head>
<body>
</body>
</html>

View file

@ -0,0 +1,8 @@
body {
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
}