Skip to content

Commit

Permalink
push
Browse files Browse the repository at this point in the history
  • Loading branch information
Borade07 committed Dec 15, 2021
1 parent 1226c81 commit 0e41cc3
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!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="styles.css">
<title>Vanilla JavaScript App</title>
</head>

<body>
<main>
<h1>Vanilla JavaScript App</h1>
</main>
</body>

</html>
21 changes: 21 additions & 0 deletions src/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
* {
font-family: Arial, Helvetica, sans-serif;
}

html, body {
margin: 0;
border: 0;
padding: 0;
background-color: #fff;
}

main {
margin: auto;
width: 50%;
padding: 20px;
}

main > h1 {
text-align: center;
font-size: 3.5em;
}

0 comments on commit 0e41cc3

Please sign in to comment.