Introduction to HTML5
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqvlSx0dmZIHqHrWOY67HzI7iYQp2naxo9tCgImwpBIL3wb7bLYbTbPDeM1qVxa6AnBwszAvSdSzlAvOLR9P2t9JGsRhj5qt8-5U_tRid18fW6ETbQVc8_q9eQ_dwmhuhHjn3MxEt4/s0/Basic+structure.png)
Introduction to HTML5 Introduction to HTML HTML is the typical markup language for creating Web pages. So, The question arises what actually is HTML? HTML stands for Hyper Text Markup Language. HTML describes the structure of a web page. HTML consists of elements. HTML elements tells the browser how to display content. We can create static web pages with HTML only. Keywords: Hyper Text - It simply means “Text within Text”. Markup Language - It implies a language which gives layout or is used for applying format to a text document. Environment Setup To be able to create a HTML file we don’t require different type of software, a simple text editor is good enough. For example, Notepad (for Windows) or TextEdit (for Mac). But in our case, we will be working with VSCode. HTML Basics Basic structure of HTML Program For Example: <!DOCTYPE html> <html> <body> <h1>My First Heading</h1> <p...