web browser is a software application for accessing information on the World Wide Web. Popular examples : Firefox, Internet Explorer, Safari, Chrome, and Opera. In order to view a web page, users might type a web address into their browser, follow a link from another site, or use a bookmark.
When you ask your browser for a web page, the request is sent across the Internet to a special computer known as a web server which hosts the website.
People are accessing websites on an increasing range of devices including desktop computers, laptops, tablets, and mobile phones.
Screen readers are programs that read out the contents of a computer screen to a user. They are commonly used by people with visual impairments.
All websites use HTML and CSS, but content management systems, blogging software, and e-commerce platforms often add a few more technologies into the mix.
Your computer contacts a network of servers called Domain Name System (DNS) servers. These act like phone books; they tell your computer the IP address associated with the requested domain name. An IP address is a number of up to 12 digits separated by periods / full stops. Every device connected to the web has a unique IP address; it is like the phone number for that computer.
DOCTYPE : Because there have been several versions of HTML, each web page should begin with a DOCTYPE declaration to tell a browser which version of HTML the page is using.
< iframe > An iframe is like a little window that has been cut into your page — and in that window you can see another page. The term iframe is an abbreviation of inline frame.
Older browsers that do not understand HTML5 elements need to be told which elements are block-level elements.
jQuery makes writing JavaScript a lot easier.
A script is a series of instructions that a computer can follow to achieve a goal step-by-step.
Each time the script runs, it might only use a subset of all the instructions.
Computers approach tasks in a different way than humans, so your instructions must let the computer solve the task programmatically.
The interpreter(scripting engine) takes the instructions in javascript and translates them so the browser can use them to achieve the tasks.