Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishikesh-kumar-7258 committed Mar 24, 2021
1 parent 366d7a8 commit fa4d2b2
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 0 deletions.
18 changes: 18 additions & 0 deletions index.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions index.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quality Education</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>This is an amazing project.</h1>
</body>

<script src="index.js"></script>
</html>
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log('We are going to rock this.')
16 changes: 16 additions & 0 deletions index.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}

body{
width : 100vw;
height : 100vh;
background: #666;
}

h1{
color: darkblue;
text-align: center;
}

0 comments on commit fa4d2b2

Please sign in to comment.