included index.css and index.js into index.html
This commit is contained in:
13
index.html
13
index.html
@@ -1,10 +1,15 @@
|
|||||||
<HTML>
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Your Page Title</title>
|
||||||
|
<link rel="stylesheet" href="styles/index.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div>
|
<div>
|
||||||
<p>Hello World!</p>
|
|
||||||
</div>
|
</div>
|
||||||
|
<script src="scripts/index.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</HTML>
|
</html>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
body{
|
||||||
|
display: flex;
|
||||||
|
margin: 2rem;
|
||||||
|
background-color: silver;
|
||||||
|
}
|
||||||
|
|
||||||
|
div{
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user