Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
aberrantian committed Jan 9, 2024
0 parents commit 8cd1632
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
14 changes: 14 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>MMT</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="./style.css" rel="stylesheet">
<script src="main.js" defer></script>
</head>
<body>
<div id="expression">
</div>
</body>
</html>
2 changes: 2 additions & 0 deletions main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
const EXP_DIV = document.getElementById("expression");
EXP_DIV.innerText = "1 x 1 = 1";
18 changes: 18 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
html, body {
height: 100%;
width: 100%;
padding: 0px;
margin: 0px;
}

body {
background-color: black;
color: white;
font-family: monospace;
font-size: 4rem;

display: flex;
align-items: center;
justify-content: center;
text-align: center;
}

0 comments on commit 8cd1632

Please sign in to comment.