included index.css and index.js into index.html

This commit is contained in:
2024-03-20 12:53:11 -05:00
parent 0a560c460f
commit e2ca887f56
2 changed files with 18 additions and 4 deletions

View File

@@ -1,10 +1,15 @@
<HTML>
<!DOCTYPE html>
<html lang="en">
<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>
<body>
<div>
<p>Hello World!</p>
</div>
<script src="scripts/index.js"></script>
</body>
</HTML>
</html>

View File

@@ -0,0 +1,9 @@
body{
display: flex;
margin: 2rem;
background-color: silver;
}
div{
}