Introduction
Introduction to web and HTML web is nothing but collection of HTML CSS and JavaScript files where we write 50% of code in HTML and CSS. whenever we request something to server server response us which consists html CSS and JavaScript files.
HTML is Hyper Text Markup Language. it's complete structure of our webpage without HTML we can't create a webpage HTML consists many tag and tags have many attributes.
Brief about server, Apache, live server Server - Server is a computer or machine where we store our data and whenever we want our data we request to server
Apache -
Apache is a server it's not an physical server it connect physical server to client whenever user request to server Apache is middleman an response to user.
Live Server - Whenever we write code we have to refresh the code to see the changes in our webpage but live server provide way whenever we write code it changes on webpage automatically we don't need to refresh again and again. what live server do is whenever we change something in memory it changes automatically if there something change in code it render and refresh automatically.
HTML Tags (h, a, lorem, p) h1 to h6 are the Heading tags we always have to put them in order to like h1, h2, h3 so webpage are more readable. We have to avoid to use multiple h1 in single webpage although we can use but we have to avoid it's good practice.
lorem lorem is way to generate some dummy text in our webpage. whenever we want to generate some sensible text which look decent so we use lorem. first we write lorem and how many words we want to generate just write digit like lorem50, lorem500 etc
tag* p is a paragraph tag to use write paragraph in webpage it always starts from new line.
tag a is an anchor tag to provide link in our webpage. attributes href - it's an attribute of anchor tag where we provide actual URL(Uniform Resource Locator) we can use # to empty fragment we want that link should not work we write # as a value
download - using download attribute it download the file and text whenever click it used when you want that user will click on it and download something we use download attribute
target - target is attribute it have diffrent value _blank, _self(default), _parent, _top _blank will open in new tab