Posts

Showing posts from October, 2021

How to Become a Web Developer in 2021?

  What is Web Development? Web Development is the most common way of building websites and applications for the web, or for a private network known as an intranet. Web Development isn't worried about the plan of a site; rather, everything's with regards to the coding and programming that controls the website's functionality. Web development can be divided into three layers: 1. Client-side coding (frontend) 2. Server-side coding (backend) 3. Database technology. Client-side Coding: Client side scripting refers to all that the end client experiences directly. client-side code executes in an internet browser and directly identifies with what individuals see when they visit a site. Things like design, text styles, tones, menus and contact structures are totally determined by the frontend. Server-side coding: Server-side scripting, or backend development, is concerned with what happens in the background. The backend is basically the piece of a website that the client doesn...

UI Development Training in BTM Marathahalli Bangalore

Image
 Definition:  <!DOCTYPE>  Defines the Document type  ,"!" stands for         Exclamation mark and DOCTYPE stands for Document type Description: The HTML document type declaration is known as DOCTYPE, is the first line of code required in every HTML or XHTML document.  The DOCTYPE declaration is an instruction to the web browser about what version of HTML the page is written in. This ensures that the web page is parsed the same way by different web browsers. All the modern browsers like Firefox, Internet Explorer, Chrome, Safari, and Opera supports html5 doctype.   Syntax:    In HTML 5, the declaration is    <!DOCTYPE html>    In HTML 4, the declaration is   <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"             "http://www.w3.org/TR/html4/strict.dtd"> As you can see the syntax, the DOCTYPE for HTML5 is rather the most sho...