Skip to content

Commit 13783a8

Browse files
committed
init assignment html-css-js
0 parents  commit 13783a8

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# HTML-CSS-JS

index.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!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

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
* {
2+
margin: 0;
3+
padding: 0;
4+
border: 0;
5+
box-sizing: border-box;
6+
-webkit-box-sizing: border-box;
7+
-moz-box-sizing: border-box;
8+
}

0 commit comments

Comments
 (0)