We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 13783a8Copy full SHA for 13783a8
README.md
@@ -0,0 +1 @@
1
+# HTML-CSS-JS
index.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
2
+<html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <link rel="stylesheet" href="style.css" />
7
+ <title>Document</title>
8
+ </head>
9
+ <body></body>
10
+</html>
style.css
@@ -0,0 +1,8 @@
+* {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+}
0 commit comments