Chapter 2 css HTML and JAVASCRIPT

by Daniel Hall

HTML

<h1>
Hello Josh. chapter 2
</h1>
<body>
Josh can you go to the css pane
and find body and go down the end
of red and replace it ,green, or ,blue,
or ,yellow, or ,pink, or ,purple, and click run
and when you are go to the JAVASCIPT pane
let's go over this a few more chapters
so type in alert("good morning Josh");
and click return and type in document.getElementById("body").style.backroundColor = "blue";
</body>
<div id="body"></div>

CSS

body {
	  background-color: RED;
}
#body {
	  position: absolute;
		left: 25%;
		top: 70%;
		width: 25%;
		height: 25%;
		background-color: black;
}