Lab Class: HTML basic

This is the really first lab class that goes deeply into web programming. first thing that we learn is HTML. HTML is the main language of web programming, it defines the structure of a page only. There is another 3 term that you should know what it is for. first, web server, it is used to communicate the page structure to the browser. and then, web browser itself that is used to render the pages. last, Cascading Style Sheet or known as CSS is for styling the page however we wanted. when you want to make an HTML file, you will use a normal text file from notepad that saved as HTML(.html/.htm) as it extension. HTML documents are text files made up of HTML element that defined using HTML tags. HTML tags characteristic: surrounded by angle brackets (< or >) usually come in pairs like <html> and </html> the first one is the start tag the second one is the end tag the text between the tags is the element content not case sensitive note: in H...