Friday 31 May 2019

Liked on YouTube: PHP Tutorial - 1 -Introduction of php language and installing xampp server

PHP Tutorial - 1 -Introduction of php language and installing xampp server

we are installing the xampp server to use the php -~-~~-~~~-~~-~- Please watch: "How to buy a domain name from GoDaddy 2019" https://www.youtube.com/watch?v=ULV2vE1Ptio How to make a calling app in android https://www.youtube.com/watch?v=8VHRLWDmaHo How to create drawing android app in mit app inventor 2 https://www.youtube.com/watch?v=FimKlZH6Lkg How to make android calculator app using mit app https://www.youtube.com/watch?v=W39tJVxbvSM How to upload android app in google play store https://www.youtube.com/watch?v=KIPf9pBi89k how to create camera app in mit app inventor 2 https://www.youtube.com/watch?v=o-bYys8v9g4 How to create first android app in mit app inventor https://www.youtube.com/watch?v=pZWdFEzCZP0 -~-~~-~~~-~~-~-
via YouTube https://youtu.be/7IiezYd6I0M

PHP Tutorial - 1 -Introduction of php language and installing xampp server

PHP Tutorial - 1 -Introduction of php language and installing xampp server
we are installing the xampp server to use the php -~-~~-~~~-~~-~- Please watch: "How to buy a domain name from GoDaddy 2019" https://www.youtube.com/watch?v=ULV2vE1Ptio How to make a calling app in android https://www.youtube.com/watch?v=8VHRLWDmaHo How to create drawing android app in mit app inventor 2 https://www.youtube.com/watch?v=FimKlZH6Lkg How to make android calculator app using mit app https://www.youtube.com/watch?v=W39tJVxbvSM How to upload android app in google play store https://www.youtube.com/watch?v=KIPf9pBi89k how to create camera app in mit app inventor 2 https://www.youtube.com/watch?v=o-bYys8v9g4 How to create first android app in mit app inventor https://www.youtube.com/watch?v=pZWdFEzCZP0 -~-~~-~~~-~~-~-
via YouTube https://youtu.be/7IiezYd6I0M

Thursday 30 May 2019

Liked on YouTube: How to remove Lenovo laptop battery in 30 seconds

How to remove Lenovo laptop battery in 30 seconds

In this video, I'm going to show you how to remove Lenovo laptop battery in minutes. Removing the battery If your laptop is plugged in, either unplug it or disconnect the power cable. Turn your laptop over so the bottom is facing up. Locate the battery latch on the bottom of the computer. The image to the right shows some of the more common battery latches found on laptops. To remove the battery, slide the latch switch to the opposite side and hold it in that position until the battery is released. On some laptops, the battery pops out on its own. On others, you'll need to pull it out gently with the tips of your fingers. Other situations Although most laptops only have one latch, there are some that require you to slide two latches to remove the battery. On these laptops, the latches will still look similar to the examples above, but require you to move both at the same time, usually towards each other. Finally, there are also some older laptops (IBM laptops) that require the latch to be pulled out and then pushed towards the battery. No battery latch found If you cannot find any battery latches or buttons for releasing the battery on the bottom of the laptop, it is possible the laptop utilizes a different mechanism to release the battery. The laptop may also need to be serviced by a licensed repair facility to have the battery removed through partial or full disassembly. We recommend referring to the laptop documentation or check the manufacturer's website for steps on how to remove the battery or if servicing is required to remove the battery.
via YouTube https://youtu.be/k26oiUouqKQ

How to remove Lenovo laptop battery in 30 seconds

How to remove Lenovo laptop battery in 30 seconds
In this video, I'm going to show you how to remove Lenovo laptop battery in minutes. Removing the battery If your laptop is plugged in, either unplug it or disconnect the power cable. Turn your laptop over so the bottom is facing up. Locate the battery latch on the bottom of the computer. The image to the right shows some of the more common battery latches found on laptops. To remove the battery, slide the latch switch to the opposite side and hold it in that position until the battery is released. On some laptops, the battery pops out on its own. On others, you'll need to pull it out gently with the tips of your fingers. Other situations Although most laptops only have one latch, there are some that require you to slide two latches to remove the battery. On these laptops, the latches will still look similar to the examples above, but require you to move both at the same time, usually towards each other. Finally, there are also some older laptops (IBM laptops) that require the latch to be pulled out and then pushed towards the battery. No battery latch found If you cannot find any battery latches or buttons for releasing the battery on the bottom of the laptop, it is possible the laptop utilizes a different mechanism to release the battery. The laptop may also need to be serviced by a licensed repair facility to have the battery removed through partial or full disassembly. We recommend referring to the laptop documentation or check the manufacturer's website for steps on how to remove the battery or if servicing is required to remove the battery.
via YouTube https://youtu.be/k26oiUouqKQ

Tuesday 28 May 2019

Liked on YouTube: How to make CSS Progress Bar using javascript

How to make CSS Progress Bar using javascript

A normal div element can be used for a progress bar. The CSS width property can be used to set the height and width of a progress bar. In this video, I am going to walk you through the process of building a progress bar in CSS that can be configured in both HTML and JavaScript. We will be using modern and unique CSS tricks to make the progress bar easy to work with in both JavaScript and HTML.
via YouTube https://youtu.be/BUWL9_hXT1E

How to make CSS Progress Bar using javascript

How to make CSS Progress Bar using javascript

Watch on YouTube here: How to make CSS Progress Bar using javascript
Via https://www.youtube.com/channel/UCcZImr64sN4bR4BB_JA82vg/videos

How to make CSS Progress Bar using javascript

How to make CSS Progress Bar using javascript
A normal div element can be used for a progress bar. The CSS width property can be used to set the height and width of a progress bar. In this video, I am going to walk you through the process of building a progress bar in CSS that can be configured in both HTML and JavaScript. We will be using modern and unique CSS tricks to make the progress bar easy to work with in both JavaScript and HTML.
via YouTube https://youtu.be/BUWL9_hXT1E

Saturday 25 May 2019

How to use gradient background in html and css

How to use gradient background in html and css
CSS gradients let you display smooth transitions between two or more specified colors. CSS defines two types of gradients: Linear Gradients (goes down/up/left/right/diagonally) Radial Gradients (defined by their center) CSS Linear Gradients To create a linear gradient you must define at least two color stops. Color stops are the colors you want to render smooth transitions among. You can also set a starting point and a direction (or an angle) along with the gradient effect. Syntax background-image: linear-gradient(direction, color-stop1, color-stop2, ...); Linear Gradient - Top to Bottom (this is default) The following example shows a linear gradient that starts at the top. It starts red, transitioning to yellow: Example #grad { background-image: linear-gradient(red, yellow); } Linear Gradient - Left to Right The following example shows a linear gradient that starts from the left. It starts red, transitioning to yellow: Example #grad { background-image: linear-gradient(to right, red , yellow); } Linear Gradient - Diagonal You can make a gradient diagonally by specifying both the horizontal and vertical starting positions. The following example shows a linear gradient that starts at top left (and goes to bottom right). It starts red, transitioning to yellow: Example #grad { background-image: linear-gradient(to bottom right, red, yellow); } Using Angles If you want more control over the direction of the gradient, you can define an angle, instead of the predefined directions (to bottom, to top, to right, to left, to bottom right, etc.). Syntax background-image: linear-gradient(angle, color-stop1, color-stop2); The angle is specified as an angle between a horizontal line and the gradient line. The following example shows how to use angles on linear gradients: Example #grad { background-image: linear-gradient(-90deg, red, yellow); } Using Multiple Color Stops The following example shows a linear gradient (from top to bottom) with multiple color stops: Example #grad { background-image: linear-gradient(red, yellow, green); } The following example shows how to create a linear gradient (from left to right) with the color of the rainbow and some text: Gradient Background Example #grad { background-image: linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet); } Using Transparency CSS gradients also support transparency, which can be used to create fading effects. To add transparency, we use the rgba() function to define the color stops. The last parameter in the rgba() function can be a value from 0 to 1, and it defines the transparency of the color: 0 indicates full transparency, 1 indicates full color (no transparency). The following example shows a linear gradient that starts from the left. It starts fully transparent, transitioning to full color red: Example #grad { background-image: linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1)); } Repeating a linear-gradient The repeating-linear-gradient() function is used to repeat linear gradients: Example A repeating linear gradient: #grad { background-image: repeating-linear-gradient(red, yellow 10%, green 20%); } CSS Radial Gradients A radial gradient is defined by its center. To create a radial gradient you must also define at least two color stops. Syntax background-image: radial-gradient(shape size at position, start-color, ..., last-color); By default, shape is ellipse, size is farthest-corner, and position is center. Radial Gradient - Evenly Spaced Color Stops (this is default) The following example shows a radial gradient with evenly spaced color stops: Example #grad { background-image: radial-gradient(red, yellow, green); } Radial Gradient - Differently Spaced Color Stops The following example shows a radial gradient with differently spaced color stops: Example #grad { background-image: radial-gradient(red 5%, yellow 15%, green 60%); } Set Shape The shape parameter defines the shape. It can take the value circle or ellipse. The default value is ellipse. The following example shows a radial gradient with the shape of a circle: Example #grad { background-image: radial-gradient(circle, red, yellow, green); } Use of Different Size Keywords The size parameter defines the size of the gradient. It can take four values: closest-side farthest-side closest-corner farthest-corner Example A radial gradient with different size keywords: #grad1 { background-image: radial-gradient(closest-side at 60% 55%, red, yellow, black); } #grad2 { background-image: radial-gradient(farthest-side at 60% 55%, red, yellow, black); } Repeating a radial-gradient The repeating-radial-gradient() function is used to repeat radial gradients: Example A repeating radial gradient: #grad { background-image: repeating-radial-gradient(red, yellow 10%, green 15%); }
via YouTube https://youtu.be/MC0xfjhp6dw

How to use gradient background in html and css

How to use gradient background in html and css

Watch on YouTube here: How to use gradient background in html and css
Via https://www.youtube.com/channel/UCcZImr64sN4bR4BB_JA82vg/videos

Liked on YouTube: How to use gradient background in html and css

How to use gradient background in html and css

CSS gradients let you display smooth transitions between two or more specified colors. CSS defines two types of gradients: Linear Gradients (goes down/up/left/right/diagonally) Radial Gradients (defined by their center) CSS Linear Gradients To create a linear gradient you must define at least two color stops. Color stops are the colors you want to render smooth transitions among. You can also set a starting point and a direction (or an angle) along with the gradient effect. Syntax background-image: linear-gradient(direction, color-stop1, color-stop2, ...); Linear Gradient - Top to Bottom (this is default) The following example shows a linear gradient that starts at the top. It starts red, transitioning to yellow: Example #grad { background-image: linear-gradient(red, yellow); } Linear Gradient - Left to Right The following example shows a linear gradient that starts from the left. It starts red, transitioning to yellow: Example #grad { background-image: linear-gradient(to right, red , yellow); } Linear Gradient - Diagonal You can make a gradient diagonally by specifying both the horizontal and vertical starting positions. The following example shows a linear gradient that starts at top left (and goes to bottom right). It starts red, transitioning to yellow: Example #grad { background-image: linear-gradient(to bottom right, red, yellow); } Using Angles If you want more control over the direction of the gradient, you can define an angle, instead of the predefined directions (to bottom, to top, to right, to left, to bottom right, etc.). Syntax background-image: linear-gradient(angle, color-stop1, color-stop2); The angle is specified as an angle between a horizontal line and the gradient line. The following example shows how to use angles on linear gradients: Example #grad { background-image: linear-gradient(-90deg, red, yellow); } Using Multiple Color Stops The following example shows a linear gradient (from top to bottom) with multiple color stops: Example #grad { background-image: linear-gradient(red, yellow, green); } The following example shows how to create a linear gradient (from left to right) with the color of the rainbow and some text: Gradient Background Example #grad { background-image: linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet); } Using Transparency CSS gradients also support transparency, which can be used to create fading effects. To add transparency, we use the rgba() function to define the color stops. The last parameter in the rgba() function can be a value from 0 to 1, and it defines the transparency of the color: 0 indicates full transparency, 1 indicates full color (no transparency). The following example shows a linear gradient that starts from the left. It starts fully transparent, transitioning to full color red: Example #grad { background-image: linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1)); } Repeating a linear-gradient The repeating-linear-gradient() function is used to repeat linear gradients: Example A repeating linear gradient: #grad { background-image: repeating-linear-gradient(red, yellow 10%, green 20%); } CSS Radial Gradients A radial gradient is defined by its center. To create a radial gradient you must also define at least two color stops. Syntax background-image: radial-gradient(shape size at position, start-color, ..., last-color); By default, shape is ellipse, size is farthest-corner, and position is center. Radial Gradient - Evenly Spaced Color Stops (this is default) The following example shows a radial gradient with evenly spaced color stops: Example #grad { background-image: radial-gradient(red, yellow, green); } Radial Gradient - Differently Spaced Color Stops The following example shows a radial gradient with differently spaced color stops: Example #grad { background-image: radial-gradient(red 5%, yellow 15%, green 60%); } Set Shape The shape parameter defines the shape. It can take the value circle or ellipse. The default value is ellipse. The following example shows a radial gradient with the shape of a circle: Example #grad { background-image: radial-gradient(circle, red, yellow, green); } Use of Different Size Keywords The size parameter defines the size of the gradient. It can take four values: closest-side farthest-side closest-corner farthest-corner Example A radial gradient with different size keywords: #grad1 { background-image: radial-gradient(closest-side at 60% 55%, red, yellow, black); } #grad2 { background-image: radial-gradient(farthest-side at 60% 55%, red, yellow, black); } Repeating a radial-gradient The repeating-radial-gradient() function is used to repeat radial gradients: Example A repeating radial gradient: #grad { background-image: repeating-radial-gradient(red, yellow 10%, green 15%); }
via YouTube https://youtu.be/MC0xfjhp6dw

Tuesday 21 May 2019

Liked on YouTube: How to Install Phonegap and create Your first App

How to Install Phonegap and create Your first App

Apache Cordova (formerly PhoneGap) is a mobile application development framework originally created by Nitobi. Adobe Systems purchased Nitobi in 2011, rebranded it as PhoneGap, and later released an open source version of the software called Apache Cordova.[8] Apache Cordova enables software programmers to build applications for mobile devices using CSS3, HTML5, and JavaScript instead of relying on platform-specific APIs like those in Android, iOS, or Windows Phone.[9] It enables wrapping up of CSS, HTML, and JavaScript code depending upon the platform of the device. It extends the features of HTML and JavaScript to work with the device. The resulting applications are hybrid, meaning that they are neither truly native mobile application (because all layout rendering is done via Web views instead of the platform's native UI framework) nor purely Web-based (because they are not just Web apps, but are packaged as apps for distribution and have access to native device APIs). Mixing native and hybrid code snippets has been possible since version 1.9. The software was previously called just "PhoneGap", then "Apache Callback".[10][11] As open-source software, Apache Cordova allows wrappers around it, such as Appery.io or Intel XDK. PhoneGap is Adobe's commercial version of Cordova along with its associated ecosystem. Many other tools and frameworks are also built on top of Cordova, including Ionic,[12] Monaca, TACO, Onsen UI, Visual Studio, GapDebug, App Builder, Cocoon, Framework7, Quasar Framework, Evothings Studio, NSB/AppStudio, Mobiscroll, the Intel XDK,[13] and the Telerik Platform.[14] These tools use Cordova, and not PhoneGap for their core tools. Contributors to the Apache Cordova project include Adobe, BlackBerry, Google, IBM, Intel, Microsoft, Mozilla, and others.[15] Contents 1 History 2 Design and rationale 3 Supported platforms 4 See also 5 References 6 Bibliography 7 External links History First developed at an iPhoneDevCamp event in San Francisco,[16] PhoneGap went on to win the People's Choice Award at O'Reilly Media's 2009 Web 2.0 Conference,[17] and the framework has been used to develop many apps.[18] Apple Inc. has confirmed that the framework has its approval, even with the new 4.0 developer license agreement changes.[19] The PhoneGap framework is used by several mobile application platforms such as Monaca,[20] appMobi,[21] Convertigo,[22][23] ViziApps,[24] and Worklight[25][26] as the backbone of their mobile client development engine. Adobe officially announced the acquisition of Nitobi Software (the original developer) on October 4, 2011.[27] Coinciding with that, the PhoneGap code was contributed to the Apache Software Foundation to start a new project called Apache Cordova. The project's original name, Apache Callback, was viewed as too generic.[28] Then, it also appears in Adobe Systems as Adobe PhoneGap and also as Adobe PhoneGap Build.[29] Early versions of PhoneGap required an Apple computer to create iOS apps and a Windows computer to create Windows Mobile apps. After September 2012, Adobe's PhoneGap Build service allows programmers to upload CSS, HTML, and JavaScript source code to a "cloud compiler" that generates apps for every supported platform.[30] Design and rationale The core of Apache Cordova applications use CSS3 and HTML5 for their rendering and JavaScript for their logic. HTML5 provides access to underlying hardware such as the accelerometer, camera, and GPS. However, browsers' support for HTML5-based device access is not consistent across mobile browsers, particularly older versions of Android. To overcome these limitations, Apache Cordova embeds the HTML5 code inside a native WebView on the device, using a foreign function interface to access the native resources of it.[31] Apache Cordova can be extended with native plug-ins, allowing developers to add more functionalities that can be called from JavaScript, making it communicate directly between the native layer and the HTML5 page. These plugins allow access to the device's accelerometer, camera, compass, file system, microphone, and more. However, the use of Web-based technologies leads some Apache Cordova applications to run slower than native applications with similar functionality.[32] Adobe Systems warns that applications built with Apache Cordova may be rejected by Apple for being too slow or not feeling "native" enough (having appearance and functionality consistent with what users have come to expect on the platform).
via YouTube https://youtu.be/iDVI2yEfl0c

How to Install Phonegap and create Your first App

How to Install Phonegap and create Your first App
Apache Cordova (formerly PhoneGap) is a mobile application development framework originally created by Nitobi. Adobe Systems purchased Nitobi in 2011, rebranded it as PhoneGap, and later released an open source version of the software called Apache Cordova.[8] Apache Cordova enables software programmers to build applications for mobile devices using CSS3, HTML5, and JavaScript instead of relying on platform-specific APIs like those in Android, iOS, or Windows Phone.[9] It enables wrapping up of CSS, HTML, and JavaScript code depending upon the platform of the device. It extends the features of HTML and JavaScript to work with the device. The resulting applications are hybrid, meaning that they are neither truly native mobile application (because all layout rendering is done via Web views instead of the platform's native UI framework) nor purely Web-based (because they are not just Web apps, but are packaged as apps for distribution and have access to native device APIs). Mixing native and hybrid code snippets has been possible since version 1.9. The software was previously called just "PhoneGap", then "Apache Callback".[10][11] As open-source software, Apache Cordova allows wrappers around it, such as Appery.io or Intel XDK. PhoneGap is Adobe's commercial version of Cordova along with its associated ecosystem. Many other tools and frameworks are also built on top of Cordova, including Ionic,[12] Monaca, TACO, Onsen UI, Visual Studio, GapDebug, App Builder, Cocoon, Framework7, Quasar Framework, Evothings Studio, NSB/AppStudio, Mobiscroll, the Intel XDK,[13] and the Telerik Platform.[14] These tools use Cordova, and not PhoneGap for their core tools. Contributors to the Apache Cordova project include Adobe, BlackBerry, Google, IBM, Intel, Microsoft, Mozilla, and others.[15] Contents 1 History 2 Design and rationale 3 Supported platforms 4 See also 5 References 6 Bibliography 7 External links History First developed at an iPhoneDevCamp event in San Francisco,[16] PhoneGap went on to win the People's Choice Award at O'Reilly Media's 2009 Web 2.0 Conference,[17] and the framework has been used to develop many apps.[18] Apple Inc. has confirmed that the framework has its approval, even with the new 4.0 developer license agreement changes.[19] The PhoneGap framework is used by several mobile application platforms such as Monaca,[20] appMobi,[21] Convertigo,[22][23] ViziApps,[24] and Worklight[25][26] as the backbone of their mobile client development engine. Adobe officially announced the acquisition of Nitobi Software (the original developer) on October 4, 2011.[27] Coinciding with that, the PhoneGap code was contributed to the Apache Software Foundation to start a new project called Apache Cordova. The project's original name, Apache Callback, was viewed as too generic.[28] Then, it also appears in Adobe Systems as Adobe PhoneGap and also as Adobe PhoneGap Build.[29] Early versions of PhoneGap required an Apple computer to create iOS apps and a Windows computer to create Windows Mobile apps. After September 2012, Adobe's PhoneGap Build service allows programmers to upload CSS, HTML, and JavaScript source code to a "cloud compiler" that generates apps for every supported platform.[30] Design and rationale The core of Apache Cordova applications use CSS3 and HTML5 for their rendering and JavaScript for their logic. HTML5 provides access to underlying hardware such as the accelerometer, camera, and GPS. However, browsers' support for HTML5-based device access is not consistent across mobile browsers, particularly older versions of Android. To overcome these limitations, Apache Cordova embeds the HTML5 code inside a native WebView on the device, using a foreign function interface to access the native resources of it.[31] Apache Cordova can be extended with native plug-ins, allowing developers to add more functionalities that can be called from JavaScript, making it communicate directly between the native layer and the HTML5 page. These plugins allow access to the device's accelerometer, camera, compass, file system, microphone, and more. However, the use of Web-based technologies leads some Apache Cordova applications to run slower than native applications with similar functionality.[32] Adobe Systems warns that applications built with Apache Cordova may be rejected by Apple for being too slow or not feeling "native" enough (having appearance and functionality consistent with what users have come to expect on the platform).
via YouTube https://youtu.be/iDVI2yEfl0c

How to Install Phonegap and create Your first App

How to Install Phonegap and create Your first App

Watch on YouTube here: How to Install Phonegap and create Your first App
Via https://www.youtube.com/channel/UCcZImr64sN4bR4BB_JA82vg/videos

Sunday 19 May 2019

how to make a water drop using html and css

how to make a water drop using html and css
how to make a water drop using html and css CSS code of this program .drop{ border: solid #c3e8de; height: 100px; width: 100px; box-shadow: 2px 2px 2px 2px #948e8e; border-radius: 0% 100% 100% 100%; background: #c3e8ee; transform: rotate(45deg); }
via YouTube https://youtu.be/Lb9VeBX7qvg

Liked on YouTube: how to make a water drop using html and css

how to make a water drop using html and css

how to make a water drop using html and css CSS code of this program .drop{ border: solid #c3e8de; height: 100px; width: 100px; box-shadow: 2px 2px 2px 2px #948e8e; border-radius: 0% 100% 100% 100%; background: #c3e8ee; transform: rotate(45deg); }
via YouTube https://youtu.be/Lb9VeBX7qvg

how to make a water drop using html and css

how to make a water drop using html and css

Watch on YouTube here: how to make a water drop using html and css
Via https://www.youtube.com/channel/UCcZImr64sN4bR4BB_JA82vg/videos

Saturday 18 May 2019

How to make your image clickable in HTML

How to make your image clickable in HTML
How to make your image clickable in HTML.
via YouTube https://youtu.be/zuzodcBCMWA

Liked on YouTube: How to make your image clickable in HTML

How to make your image clickable in HTML

How to make your image clickable in HTML.
via YouTube https://youtu.be/zuzodcBCMWA

Liked on YouTube: How to create a simple calculator using Visual basic .NET

How to create a simple calculator using Visual basic .NET

first of open a new window form then insert a 8 label , 2 textbox and 6 buttons change the all tools text properties like and arrange all buttons and textbox. then double click one the form and create a variable. then double click on the buttons and write a coding. then create a menu from a toolbox and write a text for a menu then save a program and run -~-~~-~~~-~~-~- The Coding Bus How to link one page to another page in HTML https://youtu.be/GmzUr4Tdeb0 How to create a simple Home Design program in java Applet https://youtu.be/oLtG5vNI7WA Difference between Core JAVA VS Advanced JAVA https://youtu.be/iR3uxTlE7nw How to change Form background color in Runtime in VB.net https://youtu.be/Ewd9Ow_qmsE How to create the Rainbow in Java Applet https://youtu.be/gjGq9zKTZpg How to create a game in visual basic(Ant hit game in vb) https://youtu.be/MdhwSYo8qNk https://youtu.be/y3Rq-w5UQzY Marksheet program in C language The Coding Bus qwertyuiopasdfghjklzxcvbnm How to install wordpress in xampp step by step https://www.youtube.com/watch?v=YdwMhXX-FLE How to create menu and submenu in wordpress https://www.youtube.com/watch?v=PACC3farNPY https://www.youtube.com/watch?v=8kG3JTbGAbw How to install wordpress theme with demo data free How to change footer copyright in wordpress https://www.youtube.com/watch?v=3oIkPWYXyyQ How to change footer widget in wordpress https://www.youtube.com/watch?v=1HbnBbZX9tA How to backup & restore your wordpress website in 3 minutes free 2018 https://www.youtube.com/watch?v=pSr5w4U36c8 How to use the revolution slider plugin with Button Link - full tutorial 2018 https://www.youtube.com/watch?v=KMBFxOlObx4 https://www.youtube.com/watch?v=z5jbofGMOHM How to add new user role in wordpress How To Add YouTube Video To Your WordPress Website 2018 https://www.youtube.com/watch?v=jCWQ7oA2bBA How to add contact form 7 in wordpress page https://www.youtube.com/watch?v=E9U27FOPNyo How to change favicon in wordpress theme https://www.youtube.com/watch?v=uvczOIqdVYk How to use tubebuddy on youtube - 2018 full tutorial https://www.youtube.com/watch?v=N1zpn3sT-2o How to add additional css in wordpress 2018 https://www.youtube.com/watch?v=2L7lHf_0C-E qwertyuiopasdfghjklzxcvbnm -~-~~-~~~-~~-~-
via YouTube https://youtu.be/XngJYkagOWA

How to create a simple calculator using Visual basic .NET

How to create a simple calculator using Visual basic .NET
first of open a new window form then insert a 8 label , 2 textbox and 6 buttons change the all tools text properties like and arrange all buttons and textbox. then double click one the form and create a variable. then double click on the buttons and write a coding. then create a menu from a toolbox and write a text for a menu then save a program and run -~-~~-~~~-~~-~- The Coding Bus How to link one page to another page in HTML https://youtu.be/GmzUr4Tdeb0 How to create a simple Home Design program in java Applet https://youtu.be/oLtG5vNI7WA Difference between Core JAVA VS Advanced JAVA https://youtu.be/iR3uxTlE7nw How to change Form background color in Runtime in VB.net https://youtu.be/Ewd9Ow_qmsE How to create the Rainbow in Java Applet https://youtu.be/gjGq9zKTZpg How to create a game in visual basic(Ant hit game in vb) https://youtu.be/MdhwSYo8qNk https://youtu.be/y3Rq-w5UQzY Marksheet program in C language The Coding Bus qwertyuiopasdfghjklzxcvbnm How to install wordpress in xampp step by step https://www.youtube.com/watch?v=YdwMhXX-FLE How to create menu and submenu in wordpress https://www.youtube.com/watch?v=PACC3farNPY https://www.youtube.com/watch?v=8kG3JTbGAbw How to install wordpress theme with demo data free How to change footer copyright in wordpress https://www.youtube.com/watch?v=3oIkPWYXyyQ How to change footer widget in wordpress https://www.youtube.com/watch?v=1HbnBbZX9tA How to backup & restore your wordpress website in 3 minutes free 2018 https://www.youtube.com/watch?v=pSr5w4U36c8 How to use the revolution slider plugin with Button Link - full tutorial 2018 https://www.youtube.com/watch?v=KMBFxOlObx4 https://www.youtube.com/watch?v=z5jbofGMOHM How to add new user role in wordpress How To Add YouTube Video To Your WordPress Website 2018 https://www.youtube.com/watch?v=jCWQ7oA2bBA How to add contact form 7 in wordpress page https://www.youtube.com/watch?v=E9U27FOPNyo How to change favicon in wordpress theme https://www.youtube.com/watch?v=uvczOIqdVYk How to use tubebuddy on youtube - 2018 full tutorial https://www.youtube.com/watch?v=N1zpn3sT-2o How to add additional css in wordpress 2018 https://www.youtube.com/watch?v=2L7lHf_0C-E qwertyuiopasdfghjklzxcvbnm -~-~~-~~~-~~-~-
via YouTube https://youtu.be/XngJYkagOWA

How to make a moon design using html and css

How to make a moon design using html and css
how to make moon design in HTML and CSS. Hello Friends, In this video, I'm going to show you how to make a moon using HTML and CSS. //Tags// website kaise banaye,modern web design,modern website,modern website design 2019,modern website html css,modern website html css hindi,trendy websites in hindi,website in hindi,website html css hindi,website html css hindi 2019,html css website,html css website in hindi,html css website design tutorial in hindi,how to make website in hindi,how to create website in hindi,create website using html and css in hindi,modern,website,html,css,create,free website hindi
via YouTube https://youtu.be/eui2ECuMXns

How to make a moon design using html and css

How to make a moon design using html and css

Watch on YouTube here: How to make a moon design using html and css
Via https://www.youtube.com/channel/UCcZImr64sN4bR4BB_JA82vg/videos

Liked on YouTube: How to make a moon design using html and css

How to make a moon design using html and css

how to make moon design in HTML and CSS. Hello Friends, In this video, I'm going to show you how to make a moon using HTML and CSS. //Tags// website kaise banaye,modern web design,modern website,modern website design 2019,modern website html css,modern website html css hindi,trendy websites in hindi,website in hindi,website html css hindi,website html css hindi 2019,html css website,html css website in hindi,html css website design tutorial in hindi,how to make website in hindi,how to create website in hindi,create website using html and css in hindi,modern,website,html,css,create,free website hindi
via YouTube https://youtu.be/eui2ECuMXns

😍Developer on Weekends #shorts #officememes #developermemes

😍Developer on Weekends #shorts #officememes #developermemes Welcome to the latest viral YouTube shorts meme for developers! 😍Developer on...