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>
|
||||
|
||||
<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>
|
||||
@@ -0,0 +1,9 @@
|
||||
body{
|
||||
display: flex;
|
||||
margin: 2rem;
|
||||
background-color: silver;
|
||||
}
|
||||
|
||||
div{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user