Remote into the server just like last class. See "Create a web page" from last week if you can't remember.
Have a "theme" for your web page. Think about your interests. Maybe you like music, Harry Potter, a video game, sports, etc. Now create your page with information about that topic. Make it something you love...
Edit the page you created last class
Have a heading on the web page ---> https://www.w3schools.com/html/html_headings.asp
Have a paragraph with text about your topic ---> https://www.w3schools.com/html/html_paragraphs.asp
Link at least one outside web page that relates to your topic ---> https://www.w3schools.com/html/html_links.asp
Embed two images into your page about your topic ---> https://sites.google.com/sch.org/cel-8th-enviro-tech-2020-21/html/images
Embed a YouTube video on your page ---> https://sites.google.com/sch.org/cel-8th-enviro-tech-2020-21/html/videos
You can add background colors, text colors, etc however you like
You must use the CSS "position" property to experiment with moving elements around on the screen ---> https://www.w3schools.com/css/css_positioning.asp
div1 {
position: relative;
top: 0px;
left: 400px;
}
You will still need to have a <div1> </div1> in your html code for the CSS to give style to it!