WEEK 3 - Introduction to HTML
Today, I learn some step on how to create a html file and I find that it was fun to making a website. I follow the step given in slide and modify by using own preferences . HTML Tutorial Hello World This is a heading This is a paragraph. Visit W3Schools! Firstname Lastname Age Jill Smith 50 Eve Jackson 94 The source code to create my first HTML document <html> <head> <title>HTML Tutorial</title> <style> body { background-color: #93B874; } </style> </head> <body> <h1 style="background-color:DodgerBlue">Hello World</h1> <h1>This is a heading</h1> <p>This is a paragraph.</p> <img src="https://www.smashingmagazine.com/wp-content/uploads/2015/06/10-dithering-opt.jpg" style="width:304px;height:228px;"> <br> <a href="http...