Introduction Bootstrap

Bootstrap is the world’s most popular framework for building a responsive website with a mobile view. Its provides all feature for the responsive web. When you using CSS it can be very easy to create an HTML Structure.

Let’s start first with how can use Bootstrap and the important requirements for use-

Below code called Bootstrap CDN name “bootstrap.min.css”. It is very important for create a Bootsrap Structure.you can use cdn Online or Ofline below are line you can from Click Here . Here are very different version Minimum Version of V2.3.2 or latest version V5.0.

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">

Below code “js cdn” it is also very important for create a Boostrap Structure. Also find from Click Here

<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>

Below Code Starter Template with help of CSS & JS CDN. So your copy this Code and try to paste your “.html” page and use Bootstrap V4.0 .

Output
Tagged : / / /

Tutorials for PHP Conditioning

What is PHP Conditioning?

PHP, like other programming languages, allows you to build code that executes multiple behaviors based on the results of logical or equivalent testing conditions. This presupposes that test conditions may be written in terms of expressions that evaluate true or false, and that actions can be carried out based on the results.

PHP allows programmers to assess numerous situations and determine whether they are true or false during the programming process.

A conditional statement is a programming structure that conveys these circumstances and their associated behavior.

What are the types of conditional statements?

If the test condition is not used, PHP is used. There are several ways to use a sentence in PHP.

  • The if statement
  • The if…else statement
  • The if…elseif….else statement
  • The switch…case statement
Conditional Statementfinal PHP 02
Tagged : / / / / / / / /

Getting input from users in JavaScript

prompt( ) – The browser provides a built-in function that can be used to get input
from the user, named prompt. The prompt( ) method displays a dialog box that prompts
the visitor for input.

Once the prompt function obtains input from the user, it returns that input.

Syntax: – prompt(text, defaultText)

Ex:- prompt(“Enter Your Name: “, “name”);
prompt(“Enter Your Roll No. : “);

Good Approach

  • Inline
  • External

Inline

External

Good Approach

  • Inside head Tag
  • Inside body Tag

Inside head Tag

Inside body Tag

Tagged : / / /

JavaScript Operators

  • Arithmetic Operators
  • Comparison (Relational) Operators
  • Logical Operators
  • Bitwise Operators
  • Assignment Operators

Arithmetic Operators

Arithmetic operators perform addition, subtraction, multiplication, division, exponentiation, and modulus operations.

OperatorsMeaningExampleResult
+Addition4+26
Subtraction4-22
*Multiplication4*28
/Division4/22
%Modulus operator to get
the remainder in integer division
5%21
++IncrementA = 10;
A+ +
11
DecrementA = 10;
A− −
9

Relational Operators

OperatorsMeaningExampleResult
<Less than5<2False
>Greater than5>2True
<=Less than or equal to5<=2False
>=Greater than or equal to5>=2True
=Equal to5==2False
!=Not equal to5! =2True
===Equal value and same type5 === 5
5 === “5”
True
False
!==Not Equal Value or Not
same type
5 ! == 5
5 ! == “5”
False
True

Logical Operators

OperatorsMeaningExampleResult
&&Logical and(5<2)&&(5>3)False
||Logical or(5<2)||(5>3)True
!Logical not!(5<2)True

&&

Operand 1 Operand 2Result
TrueTrueTrue
TrueFalseFalse
FalseTrueFalse
FalseFalseFalse

||

Operand 1 Operand 2Result
TrueTrueTrue
TrueFalseTrue
FalseTrueTrue
FalseFalseFalse

!

OperandResult
FalseTrue
TrueFalse

Bitwise Operators

OperatorMeaning
<<Shifts the bits to left
>>Shifts the bits to the right
~Bitwise inversion (one‟s complement)
&Bitwise logical AND
|Bitwise logical OR
^Bitwise exclusive or

Bitwise logical AND &

Operand 1Operand 2Result (operand1&operand2)
TrueTrueTrue
TrueFalseFalse
FalseTrueFalse
FalseFalseFalse
Operand 1Operand 2Result (operand1&operand2)
111
100
010
000

Bitwise logical OR |

Operand 1Operand 2Result (operand1|operand2)
True 1True 1True 1
True 1False 0True 1
False 0True 1True 1
False 0False 0False 0

Bitwise XOR ^

Operand 1Operand 2Result (operand1^operand2)
True 1True 1False 0
True 1False 0True 1
False 0True 1True 1
False 0False 0False 0

Bitwise NOT ~

OperandResult
True 1False 0
False 0True 1

Assignment Operators

OperatorExampleEquivalent Expression
=𝑚 = 10𝑚 = 10
+=𝑚 += 10𝑚 = 𝑚 + 10
−=𝑚 −= 10𝑚 = 𝑚 − 10
∗=𝑚 ∗= 10𝑚 = 𝑚 ∗ 10
/ =𝑚 / =𝑚 = 𝑚/10
% =𝑚 % = 10𝑚 = 𝑚%10
<<=𝑎 <<= 𝑏𝑎 = 𝑎 << 𝑏
>>=𝑎 >>= 𝑏𝑎 = 𝑎 >> 𝑏
>>>=𝑎 >>>= 𝑏𝑎 = 𝑎 >>> 𝑏
& =𝑎 & = 𝑏𝑎 = 𝑎 & 𝑏
^ =𝑎 ^ = 𝑏𝑎 = 𝑎 ^ 𝑏
| =𝑎 | = 𝑏𝑎 = 𝑎 | b
Tagged : / /

List of Top 5 Git repository management systems in 2021

  1. GitHub.
  2. Bitbucket.
  3. Assembla.
  4. RhodeCode.
  5. DevZing Subversion.

GitHub:-

Github is a collaborative coding tool with version control, branching, and merging all included.

GitHub is the best place to share code with friends, co-workers, classmates, and strangers.

Bitbucket:-

Bitbucket is a cloud-based Git and Mercurial-based source code management and collaboration tool.

Bitbucket is a cloud-based hosting service for projects that use either the Mercurial or Git revision control systems.

Assembla:-

Enterprise cloud version control for secure source code management in the cloud.

Assembla is the world’s only Enterprise Cloud Version Control (ECVC) provider, bringing multi-repository secure source code management to the cloud.

RhodeCode:-

RhodeCode is a fast and powerful management tool for Mercurial and GITand SVN with a built-in push/pull server, full-text search, pull requests, and code-review system.

RhodeCode is a fast and powerful management tool for Mercurial and GIT and Subversion with a built-in push/pull server, full-text search, pull requests, and powerful code-review system. It works on http/https and has a range of unique features.

DevZing Subversion:-

High-speed, secure, available subversion hosting.

Your code is safe and secure and accessible from anywhere.

All plans support SSL (https) for connecting to your repositories.

Free import from other Subversion systems. Friction-free migration.

Send an email on every commit. Always know who is updating your repositories.

What is git?

Git is software for tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code during software development. Its goals include speed, data integrity, and support for distributed, non-linear workflows.

Why do we need git?

Git is the most commonly used version control system. Git tracks the changes you make to files, so you have a record of what has been done, and you can revert to specific versions should you ever need to. Git also makes collaboration easier, allowing changes by multiple people to all to be merged into one source.

What is the role of Git repository managment systems?

  • Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
  • It outclasses SCM tools like Subversion, CVS, Perforce, and ClearCase with features like cheap local branching, convenient staging areas, and multiple workflows.
  • A Git repository is the . git/ folder inside a project.
  • This repository tracks all changes made to files in your project, building a history over time.
Tagged : / / / / /

HTML: Blockquote & q tag

Blockquote:

The <blockquote> …………… </blockquote> is used for long and multiline quotations.

q:

The <q> ………………… </q> element is used for shorter quotes that sit within a paragraph.

Tagged : / / / /

HTML: Strong & Emphasis tag

Strong tag:

The <strong> ……………….. </strong> tag indicates that its content has strong importance.

Emphasis:

The <em> ………………… </em> indicates emphasis that subtly changes the meaning of a sentence.

Tagged : / / / / /

HTML: Align Tag

  • Center – Aligns the whole text to the center of the web page ……….. align = “center”.
  • Left – Aligns the whole text to the left side of the web page …………. align = “left”.
  • Right – Aligns the whole text to the right side of the web page ……….. align = “right”.
  • Justify – Justifies the whole text and also indents the first line ………… align = “justify”.
  • With Heading <h1 align =”right”> ……….. </h1>.
  • With paraggraph <p align =”right”> ……… </p>.
  • With Horizontal Rule <hr align =”right”>.
Tagged : / / / / / / /