Friday, 30 November 2018

CSS

CSS  css called cascading style sheet css describes the style of html css save a lot of works to developer syntax of css h2 { color:red; font-size:12px; }  h2 - selection color - property red - value color:red; - declaration  3 ways to add css styles in our html document  Inline...

Thursday, 29 November 2018

GIT & GITHUB

GIT A staggering number of software projects rely on Git for version control Git's features Performance Security Flexibility Version control Some important commands in Git git config --global user.name "xxx" git config --global user.email "yyy"      This...

Sunday, 25 November 2018

HTML

HTML HTML - Hyper text markup language  html is used to create electronic documents that are displayed on the www each page contain a series of connection to other pages called "hyperlinks" every web page you see on the internet is written using one version of html code or another HTML...

IDE

IDE- intergrated development environment which is provides many facilities to programmers. IDEs are built to work with specific application platforms and remove barriers involved in the lifecycle of software development. IDEs are used in development teams to build new software, apps, web pages,...