Have these done by next class.
Web development is a field that develops rapidly, and you will be expected
to teach yourself a lot. Learning how to research things you don't understand
is critical because it's impossible to know everything about web development.
The best developers are good at googling things and know how to learn on their own.
For the basics of HTML that we went over in class, you can use this video as a reference.
If you don't like the video, W3 schools offers a decent tutorial on HTML as well as CSS and JS.
Web Project
1.) Your first task is to create a blank website. Start by creating
a folder with the following files :
index.html
style.css
script.js
2.) Fill in the html file with necessary code so that you have a
page with a header, paragraph, and button. The button should say "push me".
3.) Link the css file and javascript file to the html file.
4.) Modify the css file so that the paragraph is center aligned.
5.) Modify the html file and js file such that when you press the button,
an alert pops up saying, "Hello!"
6.) Add anything else you want! Explore the features of css, javascript, and html.