Sunday 29 September 2019

how to create camera app in mit app inventor 2

how to create camera app in mit app inventor 2
In this tutorial, I'm going to show you how to use the camera and save the image in the gallery in the MIT app inventor. its very simple to create the camera android app for taking the picture. we need to write only a few lines code to create this android application. so let start. Accessing images and sounds in App Inventor 2 Applications built with App Inventor can access sound, image, and video sources from three different kinds of locations: Application assets The sources labeled Media shown in the designer — part of the application's assets — are packaged with the application. Anyone who installs your application will have them, as part of the application. You also specify them in the designer, which is convenient. You can also specify these in programs by their file name: just use the file name without any special prefix. For example, if you have an image asset named kitty.png, you can use it as an image: just set the Picture property of an image component to the text kitty.png. You can similarly use files names for sound (Sound or Player) or video (VideoPlayer). Assets are the most convenient to use, but the space for them is limited to a few megabytes, because they must be packaged with the application. They are good for small images and short audio selections. Bit you would probably not use them for complete songs or videos. The phone SD card You can access files on your phone's SD (secure digital) card using file names that begin with /sdcard . You could play a song on your SDCard by setting the source of a Player component to /sdcard/Music/Blondie/The Best of Blondie/Heart of Glass.mp3 and starting the Player (assuming of course, that the song file is on the SDCard). Make sure to specify the complete file name, including the "mp3". The Android system also includes an alternative way to designe SDCard files as URLs. Here you prefix the file name with file:///sdcard and use "URL encoding" for special characters. For example, a space is "%20". So you could designate the same file by setting the player source to file:///sdcard/Music/Blondie/The%20Best%20of%20Blondie/Heart%20of%20Glass.mp3 Note that you'll want to use a Player component for this, not Sound. A complete song like this is too large for Sound to handle. Images and videos can be designated similarly. Using the SD Card provides a lot more space for media than trying to package things as assets. The drawback is that users won't automatically get them by installing your application. URLs and the Web You can access files on Web using URLs, starting with http:// , for example, setting the picture property of an image to https://ift.tt/2oocS3k and similarly for music and videos. Make sure you use the link that points to the actual file, not to players for the files, which is much more common on the Web, especially for music and videos. Other content URLs The Android system also uses URLs to access various places that media is stored on the phone. For example, the images in the photo gallery can be accessed with file names beginning content://media/external/images/media , as you can see by using the ImagePicker and examining the resulting image path. -~-~~-~~~-~~-~- 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 -~-~~-~~~-~~-~- How to create an app for free using your mobile phone 2019 https://youtu.be/VxmK-giIyGA How to delete history in google chrome 2019 android https://youtu.be/2YJqas7Dwno how to create camera app in mit app inventor 2 https://youtu.be/o-bYys8v9g4 how to redirect http to https in Wordpress website https://youtu.be/dLrsJboGzRg How to install wordpress in xampp step by step https://youtu.be/YdwMhXX-FLE?list=PL7sbjUYIdF3Ueka8gN7sNX8VoBKoBYSFJ How to add youtube video to wordpress website https://youtu.be/YdwMhXX-FLE?list=PL7sbjUYIdF3Ueka8gN7sNX8VoBKoBYSFJ how to create child theme in WordPress 2019 https://youtu.be/zM-CT9wFtw8?list=PL7sbjUYIdF3Ueka8gN7sNX8VoBKoBYSFJ sdfhfdghjhjlqwerqwes werte qwexvnkl #USA lsdkfjsdlkfjd dfkajsdlfj lkdjsflkdjfdls The Coding Bus
via YouTube https://youtu.be/o-bYys8v9g4

Liked on YouTube: how to create camera app in mit app inventor 2

how to create camera app in mit app inventor 2

In this tutorial, I'm going to show you how to use the camera and save the image in the gallery in the MIT app inventor. its very simple to create the camera android app for taking the picture. we need to write only a few lines code to create this android application. so let start. Accessing images and sounds in App Inventor 2 Applications built with App Inventor can access sound, image, and video sources from three different kinds of locations: Application assets The sources labeled Media shown in the designer — part of the application's assets — are packaged with the application. Anyone who installs your application will have them, as part of the application. You also specify them in the designer, which is convenient. You can also specify these in programs by their file name: just use the file name without any special prefix. For example, if you have an image asset named kitty.png, you can use it as an image: just set the Picture property of an image component to the text kitty.png. You can similarly use files names for sound (Sound or Player) or video (VideoPlayer). Assets are the most convenient to use, but the space for them is limited to a few megabytes, because they must be packaged with the application. They are good for small images and short audio selections. Bit you would probably not use them for complete songs or videos. The phone SD card You can access files on your phone's SD (secure digital) card using file names that begin with /sdcard . You could play a song on your SDCard by setting the source of a Player component to /sdcard/Music/Blondie/The Best of Blondie/Heart of Glass.mp3 and starting the Player (assuming of course, that the song file is on the SDCard). Make sure to specify the complete file name, including the "mp3". The Android system also includes an alternative way to designe SDCard files as URLs. Here you prefix the file name with file:///sdcard and use "URL encoding" for special characters. For example, a space is "%20". So you could designate the same file by setting the player source to file:///sdcard/Music/Blondie/The%20Best%20of%20Blondie/Heart%20of%20Glass.mp3 Note that you'll want to use a Player component for this, not Sound. A complete song like this is too large for Sound to handle. Images and videos can be designated similarly. Using the SD Card provides a lot more space for media than trying to package things as assets. The drawback is that users won't automatically get them by installing your application. URLs and the Web You can access files on Web using URLs, starting with http:// , for example, setting the picture property of an image to https://ift.tt/2oocS3k and similarly for music and videos. Make sure you use the link that points to the actual file, not to players for the files, which is much more common on the Web, especially for music and videos. Other content URLs The Android system also uses URLs to access various places that media is stored on the phone. For example, the images in the photo gallery can be accessed with file names beginning content://media/external/images/media , as you can see by using the ImagePicker and examining the resulting image path. -~-~~-~~~-~~-~- 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 -~-~~-~~~-~~-~- How to create an app for free using your mobile phone 2019 https://youtu.be/VxmK-giIyGA How to delete history in google chrome 2019 android https://youtu.be/2YJqas7Dwno how to create camera app in mit app inventor 2 https://youtu.be/o-bYys8v9g4 how to redirect http to https in Wordpress website https://youtu.be/dLrsJboGzRg How to install wordpress in xampp step by step https://youtu.be/YdwMhXX-FLE?list=PL7sbjUYIdF3Ueka8gN7sNX8VoBKoBYSFJ How to add youtube video to wordpress website https://youtu.be/YdwMhXX-FLE?list=PL7sbjUYIdF3Ueka8gN7sNX8VoBKoBYSFJ how to create child theme in WordPress 2019 https://youtu.be/zM-CT9wFtw8?list=PL7sbjUYIdF3Ueka8gN7sNX8VoBKoBYSFJ sdfhfdghjhjlqwerqwes werte qwexvnkl #USA lsdkfjsdlkfjd dfkajsdlfj lkdjsflkdjfdls The Coding Bus
via YouTube https://youtu.be/o-bYys8v9g4

Saturday 28 September 2019

How to create a free online course website with WordPress in 2019

How to create a free online course website with WordPress in 2019
In this video, I'm going to show you how to create an online course website with WordPress 2019. Here we are going to use plugin -: LearnPress //** Tags **/ How to make an online course website with WordPress How to make a beautiful online course website with WordPress How to create an online course website with WordPress 2017 How to create an online course website with WordPress 2019 How to make a beautiful online course website with WordPress ( new 2018 version ) how to make an online course website, how to create an online course with WordPress, How to make online course website in wordpress, How to create an online course website with wordpress 2019, how to add a course to teachable, lms learning management system, how to make an online course website with wordpress, how to make a website like udemy, how to make an educational website, how to make educational website in wordpress,the coding bus, how to create website in wordpress how to create online course website in wordpress how to create an online course with wordpress free wordpress online course plugin wordpress lms how to create lms website in wordpress how to sell online courses with wordpress learndash lifterlms teachable lifter lms vooplayer review courses plugin how to sell content online learndash mautic wpcrafter hosting how to sell online courses on amazon sold out courses download learnpress online course plugin wordpress wordpress course plugin free lifterlms review learndash lms plugin wordpress note taking plugin wpcrafter lms hosting online course on wordpress wordpress building course wordpress lifterlms plugin progress tracker wordpress plugin teachpress demo learndash competitors masterstudy lms plugin 60minutewebsitechallenge offsprout vs elementor cornerstone vs beaver builder wpcrafter course beaver builder vs optimizepress how to create online course website how to create an online course website how to create an online course for your website how to create website for online courses
via YouTube https://youtu.be/80lUfOmmeHw

How to create a free online course website with WordPress in 2019

How to create a free online course website with WordPress in 2019

Watch on YouTube here: How to create a free online course website with WordPress in 2019
Via https://www.youtube.com/channel/UCcZImr64sN4bR4BB_JA82vg/videos

Liked on YouTube: How to create a free online course website with WordPress in 2019

How to create a free online course website with WordPress in 2019

In this video, I'm going to show you how to create an online course website with WordPress 2019. Here we are going to use plugin -: LearnPress //** Tags **/ How to make an online course website with WordPress How to make a beautiful online course website with WordPress How to create an online course website with WordPress 2017 How to create an online course website with WordPress 2019 How to make a beautiful online course website with WordPress ( new 2018 version ) how to make an online course website, how to create an online course with WordPress, How to make online course website in wordpress, How to create an online course website with wordpress 2019, how to add a course to teachable, lms learning management system, how to make an online course website with wordpress, how to make a website like udemy, how to make an educational website, how to make educational website in wordpress,the coding bus, how to create website in wordpress how to create online course website in wordpress how to create an online course with wordpress free wordpress online course plugin wordpress lms how to create lms website in wordpress how to sell online courses with wordpress learndash lifterlms teachable lifter lms vooplayer review courses plugin how to sell content online learndash mautic wpcrafter hosting how to sell online courses on amazon sold out courses download learnpress online course plugin wordpress wordpress course plugin free lifterlms review learndash lms plugin wordpress note taking plugin wpcrafter lms hosting online course on wordpress wordpress building course wordpress lifterlms plugin progress tracker wordpress plugin teachpress demo learndash competitors masterstudy lms plugin 60minutewebsitechallenge offsprout vs elementor cornerstone vs beaver builder wpcrafter course beaver builder vs optimizepress how to create online course website how to create an online course website how to create an online course for your website how to create website for online courses
via YouTube https://youtu.be/80lUfOmmeHw

Sunday 22 September 2019

How to make Software Program in JAVA (ROBOT coding program in java)

How to make Software Program in JAVA (ROBOT coding program in java)
we are creating there software intelligence program in Java. We are creating a logic of software intelligence there are many way to define the software intelligence program one of thise program that we created. We are creating a program fir robot that code are embedded to machine and machine find a perfect fruit in many other types of fruits . -~-~~-~~~-~~-~- The Coding Bus sdfhfdghjhjlqwerqwes werte qwexvnkl #javatutorial #advancedjavatutorial #javatutorialvideos #javaprogramminglanguage #javabasics #javatutorialsforbeginners #USA lsdkfjsdlkfjd dfkajsdlfj lkdjsflkdjfdls java tutorial tutorialspoint java jdbc hibernate tutorial w3schools java jsp tutorial servlet tutorial core java tutorial servlet javatpoint java tutorial for beginners hibernate javatpoint java tutorial pdf java 8 tutorial spring security tutorial jdbc tutorial java tutorial w3schools jsp javatpoint advanced java tutorial jpa tutorial learn java online java online course j2ee tutorial howtodoinjava java collections tutorial studytonight java java robot programming robotics programming for beginners basic robotics programming how to program a robot using c c program for robot movement robot programming software robotics programming in c robot programming methods python robotics projects robot programming pdf python robotics kit java robot keypress robot programming software free download robot class in java selenium how to program a robot arm java robot key codes java robot type string robotics tutorial for beginners pdf robotics tutorial point robot making software java programmable robot robojde c++ robotics kit how to program a robot using c++ pdf robot class in selenium for file upload java robot mouse click robot framework javatpoint prolog tutorial javatpoint robotics program parts of robot natural language processing javatpoint python vs c++ vs matlab application of indian languages in robotics frc java example code timer frc java frc java print to console robotbuilder frc download robots should not quit but yours did frc frc vscode change team number robot programming robot programming pdf industrial robot programming languages basic robotics programming robotics programming for beginners how to program a robot using c c program for robot movement how to program a robot using java robot programming software free download robotics programming salary robot programming jobs python robotics kit robot programming languages ppt robot programming pdf books robot language structure aml robotic programming language c++ robotics kit how to program a robot using c++ pdf position of robot after given movements how do robots interact with each other software robots are also known as agents software robots are also known as clients python vs c++ vs matlab application of indian languages in robotics what is robot programming language robot programming languages nptel robot programming using c++ robot pdf robotics programming jobs robotics programming in c pdf textual robot languages programming robots pdf motion interpolation in robotics what is lead through programming generation of robot programming languages high level vs low level programming language c# vs python reddit robodk github how to make robot in java robot programming methods robot programming pdf python robotics kit java robot keypress robot programming software free download how to program a robot arm java robot key codes java robot type string robotics tutorial for beginners pdf robotics tutorial point robot making software java programmable robot robojde robot class in selenium for file upload java robot mouse click java.awt.robot jar download c++ robotics kit how to program a robot using c++ pdf robot class not working in jenkins autoit class in selenium how to program a robot using java basic robotics programming how to program a robot using c robot class in java selenium robotics programming for beginners c program for robot movement robot programming software parts of robot robot framework javatpoint prolog tutorial javatpoint natural language processing javatpoint frc subsystems frc command example robotmap frc frc java pidsubsystem frc default command frc oi java robot programming in java,how to build robot softwares with java,java robotics programming,java robotics programming tutorial,building robots with java,java robot,how to make java software program,how to code a robot,java robot class,how to make software using java programming,the coding bus,how to make a program in java,java multiple choice questions with answers,how to make a simple program in java,how to program a robot
via YouTube https://youtu.be/jrlWpJCeMYE

Liked on YouTube: How to make Software Program in JAVA (ROBOT coding program in java)

How to make Software Program in JAVA (ROBOT coding program in java)

we are creating there software intelligence program in Java. We are creating a logic of software intelligence there are many way to define the software intelligence program one of thise program that we created. We are creating a program fir robot that code are embedded to machine and machine find a perfect fruit in many other types of fruits . -~-~~-~~~-~~-~- The Coding Bus sdfhfdghjhjlqwerqwes werte qwexvnkl #javatutorial #advancedjavatutorial #javatutorialvideos #javaprogramminglanguage #javabasics #javatutorialsforbeginners #USA lsdkfjsdlkfjd dfkajsdlfj lkdjsflkdjfdls java tutorial tutorialspoint java jdbc hibernate tutorial w3schools java jsp tutorial servlet tutorial core java tutorial servlet javatpoint java tutorial for beginners hibernate javatpoint java tutorial pdf java 8 tutorial spring security tutorial jdbc tutorial java tutorial w3schools jsp javatpoint advanced java tutorial jpa tutorial learn java online java online course j2ee tutorial howtodoinjava java collections tutorial studytonight java java robot programming robotics programming for beginners basic robotics programming how to program a robot using c c program for robot movement robot programming software robotics programming in c robot programming methods python robotics projects robot programming pdf python robotics kit java robot keypress robot programming software free download robot class in java selenium how to program a robot arm java robot key codes java robot type string robotics tutorial for beginners pdf robotics tutorial point robot making software java programmable robot robojde c++ robotics kit how to program a robot using c++ pdf robot class in selenium for file upload java robot mouse click robot framework javatpoint prolog tutorial javatpoint robotics program parts of robot natural language processing javatpoint python vs c++ vs matlab application of indian languages in robotics frc java example code timer frc java frc java print to console robotbuilder frc download robots should not quit but yours did frc frc vscode change team number robot programming robot programming pdf industrial robot programming languages basic robotics programming robotics programming for beginners how to program a robot using c c program for robot movement how to program a robot using java robot programming software free download robotics programming salary robot programming jobs python robotics kit robot programming languages ppt robot programming pdf books robot language structure aml robotic programming language c++ robotics kit how to program a robot using c++ pdf position of robot after given movements how do robots interact with each other software robots are also known as agents software robots are also known as clients python vs c++ vs matlab application of indian languages in robotics what is robot programming language robot programming languages nptel robot programming using c++ robot pdf robotics programming jobs robotics programming in c pdf textual robot languages programming robots pdf motion interpolation in robotics what is lead through programming generation of robot programming languages high level vs low level programming language c# vs python reddit robodk github how to make robot in java robot programming methods robot programming pdf python robotics kit java robot keypress robot programming software free download how to program a robot arm java robot key codes java robot type string robotics tutorial for beginners pdf robotics tutorial point robot making software java programmable robot robojde robot class in selenium for file upload java robot mouse click java.awt.robot jar download c++ robotics kit how to program a robot using c++ pdf robot class not working in jenkins autoit class in selenium how to program a robot using java basic robotics programming how to program a robot using c robot class in java selenium robotics programming for beginners c program for robot movement robot programming software parts of robot robot framework javatpoint prolog tutorial javatpoint natural language processing javatpoint frc subsystems frc command example robotmap frc frc java pidsubsystem frc default command frc oi java robot programming in java,how to build robot softwares with java,java robotics programming,java robotics programming tutorial,building robots with java,java robot,how to make java software program,how to code a robot,java robot class,how to make software using java programming,the coding bus,how to make a program in java,java multiple choice questions with answers,how to make a simple program in java,how to program a robot
via YouTube https://youtu.be/jrlWpJCeMYE

Saturday 21 September 2019

Liked on YouTube: Humayun tomb delhi vlog | Delhi Series 1 | हुमायूँ का मकबरा | Sourabh Dubey

Humayun tomb delhi vlog | Delhi Series 1 | हुमायूँ का मकबरा | Sourabh Dubey

हुमायूँ का मकबरा की नई दिल्ली के मानचित्र पर अवस्थितिहुमायूँ का मकबरा दिल्ली के मानचित्र में मकबरे का स्थान सामान्य विवरण प्रकार मकबरा वास्तुकला शैली मुगल वास्तुकला स्थान निज़ामुद्दीन पूर्व, नई दिल्ली, भारत निर्देशांक 28.593264°N 77.250602°Eनिर्देशांक: 28.593264°N 77.250602°E निर्माणकार्य शुरू 1565 निर्माण सम्पन्न 1572 योजना एवं निर्माण वास्तुकार मिराक मिर्ज़ा घियास हुमायूँ का मकबरा इमारत परिसर मुगल वास्तुकला से प्रेरित मकबरा स्मारक है। यह नई दिल्ली के दीनापनाह अर्थात् पुराने किले के निकट निज़ामुद्दीन पूर्व क्षेत्र में मथुरा मार्ग के निकट स्थित है। गुलाम वंश के समय में यह भूमि किलोकरी किले में हुआ करती थी और नसीरुद्दीन (१२६८-१२८७) के पुत्र तत्कालीन सुल्तान केकूबाद की राजधानी हुआ करती थी। यहाँ मुख्य इमारत मुगल सम्राट हुमायूँ का मकबरा है और इसमें हुमायूँ की कब्र सहित कई अन्य राजसी लोगों की भी कब्रें हैं। यह समूह विश्व धरोहर घोषित है एवं भारत में मुगल वास्तुकला का प्रथम उदाहरण है। इस मक़बरे में वही चारबाग शैली है, जिसने भविष्य में ताजमहल को जन्म दिया। यह मकबरा हुमायूँ की विधवा बेगम हमीदा बानो बेगम के आदेशानुसार १५६२ में बना था। इस भवन के वास्तुकार सैयद मुबारक इब्न मिराक घियाथुद्दीन एवं उसके पिता मिराक घुइयाथुद्दीन थे जिन्हें अफगानिस्तान के हेरात शहर से विशेष रूप से बुलवाया गया था। मुख्य इमारत लगभग आठ वर्षों में बनकर तैयार हुई और भारतीय उपमहाद्वीप में चारबाग शैली का प्रथम उदाहरण बनी। यहां सर्वप्रथम लाल बलुआ पत्थर का इतने बड़े स्तर पर प्रयोग हुआ था।१९९३ में इस इमारत समूह को युनेस्को द्वारा विश्व धरोहर स्थल घोषित किया गया। इस परिसर में मुख्य इमारत मुगल सम्राट हुमायूँ का मकबरा है। हुमायूँ की कब्र के अलावा उसकी बेगम हमीदा बानो तथा बाद के सम्राट शाहजहां के ज्येष्ठ पुत्र दारा शिकोह और कई उत्तराधिकारी मुगल सम्राट जहांदर शाह, फर्रुख्शियार, रफी उल-दर्जत, रफी उद-दौलत एवं आलमगीर द्वितीय आदि की कब्रें स्थित हैं।इस इमारत में मुगल स्थापत्य में एक बड़ा बदलाव दिखा, जिसका प्रमुख अंग चारबाग शैली के उद्यान थे। ऐसे उद्यान भारत में इससे पूर्व कभी नहीं दिखे थे और इसके बाद अनेक इमारतों का अभिन्न अंग बनते गये। ये मकबरा मुगलों द्वारा इससे पूर्व निर्मित हुमायुं के पिता बाबर के काबुल स्थित मकबरे बाग ए बाबर से एकदम भिन्न था। बाबर के साथ ही सम्राटों को बाग में बने मकबरों में दफ़्न करने की परंपरा आरंभ हुई थी।अपने पूर्वज तैमूर लंग के समरकंद (उज़्बेकिस्तान) में बने मकबरे पर आधारित ये इमारत भारत में आगे आने वाली मुगल स्थापत्य के मकबरों की प्रेरणा बना। ये स्थापत्य अपने चरम पर ताजमहल के साथ पहुंचा। Music Info: Motivational and Positive Vibe by RomanSenykMusic. Music Link: https://youtu.be/33xm0ov67Mc
via YouTube https://youtu.be/Dio-SEQDv8E

Humayun tomb delhi vlog | Delhi Series 1 | हुमायूँ का मकबरा | Sourabh Dubey

Humayun tomb delhi vlog | Delhi Series 1 | हुमायूँ का मकबरा | Sourabh Dubey
हुमायूँ का मकबरा की नई दिल्ली के मानचित्र पर अवस्थितिहुमायूँ का मकबरा दिल्ली के मानचित्र में मकबरे का स्थान सामान्य विवरण प्रकार मकबरा वास्तुकला शैली मुगल वास्तुकला स्थान निज़ामुद्दीन पूर्व, नई दिल्ली, भारत निर्देशांक 28.593264°N 77.250602°Eनिर्देशांक: 28.593264°N 77.250602°E निर्माणकार्य शुरू 1565 निर्माण सम्पन्न 1572 योजना एवं निर्माण वास्तुकार मिराक मिर्ज़ा घियास हुमायूँ का मकबरा इमारत परिसर मुगल वास्तुकला से प्रेरित मकबरा स्मारक है। यह नई दिल्ली के दीनापनाह अर्थात् पुराने किले के निकट निज़ामुद्दीन पूर्व क्षेत्र में मथुरा मार्ग के निकट स्थित है। गुलाम वंश के समय में यह भूमि किलोकरी किले में हुआ करती थी और नसीरुद्दीन (१२६८-१२८७) के पुत्र तत्कालीन सुल्तान केकूबाद की राजधानी हुआ करती थी। यहाँ मुख्य इमारत मुगल सम्राट हुमायूँ का मकबरा है और इसमें हुमायूँ की कब्र सहित कई अन्य राजसी लोगों की भी कब्रें हैं। यह समूह विश्व धरोहर घोषित है एवं भारत में मुगल वास्तुकला का प्रथम उदाहरण है। इस मक़बरे में वही चारबाग शैली है, जिसने भविष्य में ताजमहल को जन्म दिया। यह मकबरा हुमायूँ की विधवा बेगम हमीदा बानो बेगम के आदेशानुसार १५६२ में बना था। इस भवन के वास्तुकार सैयद मुबारक इब्न मिराक घियाथुद्दीन एवं उसके पिता मिराक घुइयाथुद्दीन थे जिन्हें अफगानिस्तान के हेरात शहर से विशेष रूप से बुलवाया गया था। मुख्य इमारत लगभग आठ वर्षों में बनकर तैयार हुई और भारतीय उपमहाद्वीप में चारबाग शैली का प्रथम उदाहरण बनी। यहां सर्वप्रथम लाल बलुआ पत्थर का इतने बड़े स्तर पर प्रयोग हुआ था।१९९३ में इस इमारत समूह को युनेस्को द्वारा विश्व धरोहर स्थल घोषित किया गया। इस परिसर में मुख्य इमारत मुगल सम्राट हुमायूँ का मकबरा है। हुमायूँ की कब्र के अलावा उसकी बेगम हमीदा बानो तथा बाद के सम्राट शाहजहां के ज्येष्ठ पुत्र दारा शिकोह और कई उत्तराधिकारी मुगल सम्राट जहांदर शाह, फर्रुख्शियार, रफी उल-दर्जत, रफी उद-दौलत एवं आलमगीर द्वितीय आदि की कब्रें स्थित हैं।इस इमारत में मुगल स्थापत्य में एक बड़ा बदलाव दिखा, जिसका प्रमुख अंग चारबाग शैली के उद्यान थे। ऐसे उद्यान भारत में इससे पूर्व कभी नहीं दिखे थे और इसके बाद अनेक इमारतों का अभिन्न अंग बनते गये। ये मकबरा मुगलों द्वारा इससे पूर्व निर्मित हुमायुं के पिता बाबर के काबुल स्थित मकबरे बाग ए बाबर से एकदम भिन्न था। बाबर के साथ ही सम्राटों को बाग में बने मकबरों में दफ़्न करने की परंपरा आरंभ हुई थी।अपने पूर्वज तैमूर लंग के समरकंद (उज़्बेकिस्तान) में बने मकबरे पर आधारित ये इमारत भारत में आगे आने वाली मुगल स्थापत्य के मकबरों की प्रेरणा बना। ये स्थापत्य अपने चरम पर ताजमहल के साथ पहुंचा। Music Info: Motivational and Positive Vibe by RomanSenykMusic. Music Link: https://youtu.be/33xm0ov67Mc
via YouTube https://youtu.be/Dio-SEQDv8E

Wednesday 18 September 2019

Liked on YouTube: How to know my computer Age (Your Laptop Birthday)

How to know my computer Age (Your Laptop Birthday)

We are finding the age of our PC/Laptop/computer Age with our PC birthday date. we can celebrate our PC birthday. so to i show you how to find your pc age. please follow there simple step. //tags// how old is your pc,how to old is your computer,how old is your leptop,how to find my leptop age,how to find my computer age,how to find my pc age,how to find my laptop model,how to find my laptop mac address,how to find my laptop ip address,how to find my laptop ip address windows 10,how to find my laptop model windows 10,how to check computer age,how old is my computer dell,how old is my computer mac,computer hardware,laptop age check -~-~~-~~~-~~-~- 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 -~-~~-~~~-~~-~- How to create an app for free using your mobile phone 2019 https://youtu.be/VxmK-giIyGA How to delete history in google chrome 2019 android https://youtu.be/2YJqas7Dwno how to create camera app in mit app inventor 2 https://youtu.be/o-bYys8v9g4 how to redirect http to https in Wordpress website https://youtu.be/dLrsJboGzRg How to install wordpress in xampp step by step https://youtu.be/YdwMhXX-FLE?list=PL7sbjUYIdF3Ueka8gN7sNX8VoBKoBYSFJ How to add youtube video to wordpress website https://youtu.be/YdwMhXX-FLE?list=PL7sbjUYIdF3Ueka8gN7sNX8VoBKoBYSFJ how to create child theme in WordPress 2019 https://youtu.be/zM-CT9wFtw8?list=PL7sbjUYIdF3Ueka8gN7sNX8VoBKoBYSFJ sdfhfdghjhjlqwerqwes werte qwexvnkl #USA lsdkfjsdlkfjd dfkajsdlfj lkdjsflkdjfdls The Coding Bus
via YouTube https://youtu.be/P--n36J6Fec

How to know my computer Age (Your Laptop Birthday)

How to know my computer Age (Your Laptop Birthday)
We are finding the age of our PC/Laptop/computer Age with our PC birthday date. we can celebrate our PC birthday. so to i show you how to find your pc age. please follow there simple step. //tags// how old is your pc,how to old is your computer,how old is your leptop,how to find my leptop age,how to find my computer age,how to find my pc age,how to find my laptop model,how to find my laptop mac address,how to find my laptop ip address,how to find my laptop ip address windows 10,how to find my laptop model windows 10,how to check computer age,how old is my computer dell,how old is my computer mac,computer hardware,laptop age check -~-~~-~~~-~~-~- 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 -~-~~-~~~-~~-~- How to create an app for free using your mobile phone 2019 https://youtu.be/VxmK-giIyGA How to delete history in google chrome 2019 android https://youtu.be/2YJqas7Dwno how to create camera app in mit app inventor 2 https://youtu.be/o-bYys8v9g4 how to redirect http to https in Wordpress website https://youtu.be/dLrsJboGzRg How to install wordpress in xampp step by step https://youtu.be/YdwMhXX-FLE?list=PL7sbjUYIdF3Ueka8gN7sNX8VoBKoBYSFJ How to add youtube video to wordpress website https://youtu.be/YdwMhXX-FLE?list=PL7sbjUYIdF3Ueka8gN7sNX8VoBKoBYSFJ how to create child theme in WordPress 2019 https://youtu.be/zM-CT9wFtw8?list=PL7sbjUYIdF3Ueka8gN7sNX8VoBKoBYSFJ sdfhfdghjhjlqwerqwes werte qwexvnkl #USA lsdkfjsdlkfjd dfkajsdlfj lkdjsflkdjfdls The Coding Bus
via YouTube https://youtu.be/P--n36J6Fec

Tuesday 17 September 2019

Liked on YouTube: How to take a screenshot on Mac

How to take a screenshot on Mac

Take a screenshot on MacBook air. In this video, I'm going to show you how to take a screenshot on mac. There is 2 type of screenshot. first one is taking a fullscreen shot and second one is take a screenshot of the particular area. So let's start... how to take a screenshot on MacBook air how to take screenshot on mac mac screenshot to clipboard screenshot on mac not working where are screenshots saved mac video screen capture mac how to screen record on mac how do you snip and paste on a mac snipping tool for mac how to take a snippet on mac ios screenshot macbook screen print screen mac keyboard screenshot page how to paste screenshot on mac how to copy and paste an image on a mac onenote screen clipping mac how to scroll while taking a screenshot mac high sierra screenshot screenshot mx how do you ss mac screenshot app clipboard copy text from screenshot mac how to screenshot on macbook air 2011 how to print page on imac como hacer captura de pantalla en macbook pro screenshot mad how to print on mac where do screenshots go on mac paste on mac screenshot mac not working paste screenshot mac essential mac os shortcuts go drop down menu mac essential apple shortcuts insert print screen on mac macbook tips macbook pro tips for beginners macbook air tips for beginners macbook pro tips and tricks 2018 macbook air tips and tricks 2018 macbook pro tips and tricks 2019 macbook air tips and tricks 2019 macbook tips and tricks 2019 macbook tips for beginners how to use macbook pro effectively macbook pro 2018 shortcuts how much is a mac air laptop macbook pro run time should i let my macbook pro battery die macbook pro bogged down how to tune macbook how to keep mac running fast 2016 apple macbook air cool things to do with macbook pro macbook pro tutorials for beginners pdf cool apps for macbook pro setting up macbook pro first time best features of macbook air windows to mac tips mac air help using a mac air 10 things to know about mac best macos features macbook productivity tips mac catalina tips and tricks cool features of macbook pro 2016 macbook pro tips 2019 20 mac tips windows mac equivalents msconfig equivalent for mac should i buy an apple mac air screenshot on laptop how to screenshot on laptop hp how to screenshot on laptop mac how to screenshot on laptop windows 7 how to take screenshot on laptop windows 8 how to screenshot on laptop acer how to screenshot on dell laptop how to screenshot on hp laptop windows 7 how to screenshot on samsung laptop how to take a screenshot on a macbook pro video screen capture mac how to print on mac mac screenshot to clipboard screenshot on mac not working screenshot specific area windows how to do a screen dump how to take a screenshot on hp spectre how to screenshot on mac without keyboard screenshot on mac with dell keyboard how to take a screenshot for dummies is f12 print screen how to screenshot on windows 7 snipping tool windows 10 prtscn button screenshot shortcut mac how to screenshot on laptop toshiba how to screenshot on pc windows 7 how to screenshot on hp laptop windows 10 how to print screen on dell laptop prtscn key how to screenshot on dell chromebook windows 10 snipping tool how to take desktop screenshot how to screenshot on hp chromebook how to screenshot on laptop and paste where to find screenshot on laptop how to screenshot on laptop chromebook screenshot on mac,mac screenshot,how to screenshot,how to screenshot on mac,how to take a screenshot on mac,take a mac screenshot,how to take a mac screenshot,take imac screenshot,take macbook screenshot,how to take a imac screenshot,take a screenshot on macbook,how to take a picture of screen on mac,mac os x screenshot,macos screenshot,mac osx screenshot,take screenshot mac,how to take screenshot mac,how to take screenshot mac os,screenshot on macbook air,screenshot on macbook air 2018,screenshot on macbook air 2018,screenshot on macbook air 2018,how to screenshot on macbook air 2018
via YouTube https://youtu.be/BMNkUJlVp3w

How to take a screenshot on Mac

How to take a screenshot on Mac
Take a screenshot on MacBook air. In this video, I'm going to show you how to take a screenshot on mac. There is 2 type of screenshot. first one is taking a fullscreen shot and second one is take a screenshot of the particular area. So let's start... how to take a screenshot on MacBook air how to take screenshot on mac mac screenshot to clipboard screenshot on mac not working where are screenshots saved mac video screen capture mac how to screen record on mac how do you snip and paste on a mac snipping tool for mac how to take a snippet on mac ios screenshot macbook screen print screen mac keyboard screenshot page how to paste screenshot on mac how to copy and paste an image on a mac onenote screen clipping mac how to scroll while taking a screenshot mac high sierra screenshot screenshot mx how do you ss mac screenshot app clipboard copy text from screenshot mac how to screenshot on macbook air 2011 how to print page on imac como hacer captura de pantalla en macbook pro screenshot mad how to print on mac where do screenshots go on mac paste on mac screenshot mac not working paste screenshot mac essential mac os shortcuts go drop down menu mac essential apple shortcuts insert print screen on mac macbook tips macbook pro tips for beginners macbook air tips for beginners macbook pro tips and tricks 2018 macbook air tips and tricks 2018 macbook pro tips and tricks 2019 macbook air tips and tricks 2019 macbook tips and tricks 2019 macbook tips for beginners how to use macbook pro effectively macbook pro 2018 shortcuts how much is a mac air laptop macbook pro run time should i let my macbook pro battery die macbook pro bogged down how to tune macbook how to keep mac running fast 2016 apple macbook air cool things to do with macbook pro macbook pro tutorials for beginners pdf cool apps for macbook pro setting up macbook pro first time best features of macbook air windows to mac tips mac air help using a mac air 10 things to know about mac best macos features macbook productivity tips mac catalina tips and tricks cool features of macbook pro 2016 macbook pro tips 2019 20 mac tips windows mac equivalents msconfig equivalent for mac should i buy an apple mac air screenshot on laptop how to screenshot on laptop hp how to screenshot on laptop mac how to screenshot on laptop windows 7 how to take screenshot on laptop windows 8 how to screenshot on laptop acer how to screenshot on dell laptop how to screenshot on hp laptop windows 7 how to screenshot on samsung laptop how to take a screenshot on a macbook pro video screen capture mac how to print on mac mac screenshot to clipboard screenshot on mac not working screenshot specific area windows how to do a screen dump how to take a screenshot on hp spectre how to screenshot on mac without keyboard screenshot on mac with dell keyboard how to take a screenshot for dummies is f12 print screen how to screenshot on windows 7 snipping tool windows 10 prtscn button screenshot shortcut mac how to screenshot on laptop toshiba how to screenshot on pc windows 7 how to screenshot on hp laptop windows 10 how to print screen on dell laptop prtscn key how to screenshot on dell chromebook windows 10 snipping tool how to take desktop screenshot how to screenshot on hp chromebook how to screenshot on laptop and paste where to find screenshot on laptop how to screenshot on laptop chromebook screenshot on mac,mac screenshot,how to screenshot,how to screenshot on mac,how to take a screenshot on mac,take a mac screenshot,how to take a mac screenshot,take imac screenshot,take macbook screenshot,how to take a imac screenshot,take a screenshot on macbook,how to take a picture of screen on mac,mac os x screenshot,macos screenshot,mac osx screenshot,take screenshot mac,how to take screenshot mac,how to take screenshot mac os,screenshot on macbook air,screenshot on macbook air 2018,screenshot on macbook air 2018,screenshot on macbook air 2018,how to screenshot on macbook air 2018
via YouTube https://youtu.be/BMNkUJlVp3w

How to take a screenshot on Mac

How to take a screenshot on Mac

Watch on YouTube here: How to take a screenshot on Mac
Via https://www.youtube.com/channel/UCcZImr64sN4bR4BB_JA82vg/videos

Friday 13 September 2019

Liked on YouTube: How to make full width slider using divi theme

How to make full width slider using divi theme

how to make full width slider in divi. in this video i'm going to show you how to make your divi slider to full width. divi full width slider autoplay divi full width slider not working how to make the divi full width slider responsive divi slider automatic transition divi full width slider text position divi slider speed divi full width slider image position divi full width header height header & slider alignment by divi soup divi hero height divi booster height divi slider text position divi image carousel module change divi slider transitions divi booster full width slider divi full width gallery full screen slider on divi full width css divi how to make a slideshow in divi divi full screen hero image divi slider slide height divi slider module change height divi slider custom height booster divi make image responsive height full width slider divi slider cropping images divi background image not responsive elementor slider height divi slider random order change section height in divi how to make full width slider in divi,how to make slider in divi,how to create a full screen slider with divi,how to remove sidebars from divi,wordpress themes,divi theme tutorial,elegant themes divi,divi theme elegant themes tutorial,premium wordpress themes,divi slider fullscreen,fullscreen divi slider,how to make slider in divi theme,divi theme tutorial,how to make a wordpress website 2019 divi theme tutorial,build a wordpress website from scratch tutorial
via YouTube https://youtu.be/sMgCiHqxCgQ

How to make full width slider using divi theme

How to make full width slider using divi theme
how to make full width slider in divi. in this video i'm going to show you how to make your divi slider to full width. divi full width slider autoplay divi full width slider not working how to make the divi full width slider responsive divi slider automatic transition divi full width slider text position divi slider speed divi full width slider image position divi full width header height header & slider alignment by divi soup divi hero height divi booster height divi slider text position divi image carousel module change divi slider transitions divi booster full width slider divi full width gallery full screen slider on divi full width css divi how to make a slideshow in divi divi full screen hero image divi slider slide height divi slider module change height divi slider custom height booster divi make image responsive height full width slider divi slider cropping images divi background image not responsive elementor slider height divi slider random order change section height in divi how to make full width slider in divi,how to make slider in divi,how to create a full screen slider with divi,how to remove sidebars from divi,wordpress themes,divi theme tutorial,elegant themes divi,divi theme elegant themes tutorial,premium wordpress themes,divi slider fullscreen,fullscreen divi slider,how to make slider in divi theme,divi theme tutorial,how to make a wordpress website 2019 divi theme tutorial,build a wordpress website from scratch tutorial
via YouTube https://youtu.be/sMgCiHqxCgQ

How to make full width slider using divi theme

How to make full width slider using divi theme

Watch on YouTube here: How to make full width slider using divi theme
Via https://www.youtube.com/channel/UCcZImr64sN4bR4BB_JA82vg/videos

Friday 6 September 2019

Liked on YouTube: How to make a Wordpress website with Divi theme

How to make a Wordpress website with Divi theme

Make a wordpress website with Divi In this tutorial, we are going to learn how to make a website using the Divi theme. in this video, we are going to done initial setup for Divi. how to make a website using divi divi theme tutorial divi tutorials 2018 divi web divi builder divi tutorials for beginners how many websites use divi divi themeforest divi theme website wordpress elegant themes siteground hosting divi login divi themes divi builder plugin divi google analytics divi visual builder tutorial divi minimalist layout how to set up divi how to build a blog with divi how to use divi on siteground divi learning minimal divi theme divi post layouts most popular divi layout premium divi layouts divi visual builder not showing show thumbs on index pages how to launch wordpress site on bluehost bluehost wordpress tutorial how to launch wordpress site for free wordpress launch date why isn't my wordpress site live wordpress blog launch checklist
via YouTube https://youtu.be/xr8tEmz-XYI

How to make a Wordpress website with Divi theme

How to make a Wordpress website with Divi theme
Make a wordpress website with Divi In this tutorial, we are going to learn how to make a website using the Divi theme. in this video, we are going to done initial setup for Divi. how to make a website using divi divi theme tutorial divi tutorials 2018 divi web divi builder divi tutorials for beginners how many websites use divi divi themeforest divi theme website wordpress elegant themes siteground hosting divi login divi themes divi builder plugin divi google analytics divi visual builder tutorial divi minimalist layout how to set up divi how to build a blog with divi how to use divi on siteground divi learning minimal divi theme divi post layouts most popular divi layout premium divi layouts divi visual builder not showing show thumbs on index pages how to launch wordpress site on bluehost bluehost wordpress tutorial how to launch wordpress site for free wordpress launch date why isn't my wordpress site live wordpress blog launch checklist
via YouTube https://youtu.be/xr8tEmz-XYI

How to make a Wordpress website with Divi theme

How to make a Wordpress website with Divi theme

Watch on YouTube here: How to make a Wordpress website with Divi theme
Via https://www.youtube.com/channel/UCcZImr64sN4bR4BB_JA82vg/videos

Monday 2 September 2019

How to link CSS to HTML

How to link CSS to HTML
How to link CSS file to HTML file. In this video, I'm going to show you how to link your CSS file in HTML file. That's very simple, you have to write only one line code to link your CSS file to HTML file. how to link css to html, how to link css to html in sublime text, how to link css to html in visual studio code how to link css to html in notepad, how to link css to html in atom, how to link css to html in different folder how to link css to html in brackets how to link css to html document, how to link css to html in django, how to link css to html hindi how to link css file to html how to link css stylesheet to html how to link css page to html, how to link css file to html in eclipse, how to link css sheet to html, how to link css and js to html, how to link css to html in visual studio code, how to link css to html in atom, how to link css style to html how to link css to html css in html link javascript to html internal css in html html link how to link css to html in visual studio code css file types of css css background image html li html email link inline block css external css js link in html css syntax script tag css file example inline style react link css file to html css examples with source code css stylesheet template external css not working how to combine html and css inline css editor main html w3schools css not linking to html how to link css folder to html how to link multiple html pages to one css background color css css id link style html link style tag is placed in padding property creates external style sheet example how to save css file in html how to link to external css page why isn't my css linking to my html link rel= stylesheet meaning what is "hgroup"? why won't my css link to my html css not linking to html atom html does not link css link tag not working html how to link css to html in github css not loading on website how to link css to html, css, html, tutorial, link, stylesheet, programming, css tutorial, css3, link css to html, how to, html tutorial, html5, web development, how to link a css file to a html file, link html to css, how to link, website, css stylesheet, web, design, tutorials, hindi, html link tag, cascading style sheets (programming language), adobe dreamweaver (software), dreamweaver tutorial, how to link a html file to a css file, link css html, link html css, how to build a website, web page, language, web tutorial, web tutorials, html document, html file, css file, document, file, basic, easy, simple, quick, short, javascript, how to make a website, css for beginners, how to link html to css, html link to css, web design, cascading style sheets, sublime, external, link tag, learn, coding, style, stylesheets, urdu, hindi tutorials, external css in html, external css, html css, css tutorials, how to link css to html document, link tag in html, how to link html to css in sublime, dreamweaver, creative cloud, how to code, design a website, web design (interest), languages, in minutes, fast, joe dracup, free, strike, get, source, html (programming language), file (formation), how-to (conference subject), photoshop, adobe, notepad, windows, computer, dutch, subject (programming), meeting (quotation subject), maker, developer, how do we include css, how do we include css in our html, include css, how to include css, css tutorial youtube, what is css, what is css?, css3 for beginners, how do we use css in our website, what is a stylesheet, what a stylesheet is, style html, style html code, add css in html, css background image, basics of css, what are the basics of css, link to stylesheet, how to apply css, apply css, link css file to html, html link to css file, sublime text 3 tutorial in hindi, sublime html autocomplete, sublime 3 html autocomplete, sublime text 3 html autocomplete, sublime text 3 css autocomplete, sublime text 3 html css autocomplete, html css autocomplete sublime text 3, html css autocomplete sublime, sublime text 3 autocomplete, sublime text 3 autocomplete package, sublime text 3 html5 autocomplete, sublime text 3 css3 autocomplete, sublime text 3 hindi, sublime text 3, autocomplete, sublime packages, style sheet, style tag, best, basics, properties, selectors, rule,rsonal website, how to make a personal website, how to make a portfolio website, how to make a resume website, personal website tutorial, resume website tutorial, portfolio website tutorial, make a website, wordpress tutorial, make a website with wordpress, create a pro website, transparent navigation css, transparent menu in html, transparent menu in css and html, html and css dropdown menu, navigation menu css examples, navigation menu css, css navigation, navigation css, css navigation menu, css drop down navigation, css navigation drop down menu, drop down navigation menu css, css menu navigation, css navigm account facebook page, how to connect, how to connect instagram, how to connect insta
via YouTube https://youtu.be/JGgMsqEc9zc

Liked on YouTube: How to link CSS to HTML

How to link CSS to HTML

How to link CSS file to HTML file. In this video, I'm going to show you how to link your CSS file in HTML file. That's very simple, you have to write only one line code to link your CSS file to HTML file. how to link css to html, how to link css to html in sublime text, how to link css to html in visual studio code how to link css to html in notepad, how to link css to html in atom, how to link css to html in different folder how to link css to html in brackets how to link css to html document, how to link css to html in django, how to link css to html hindi how to link css file to html how to link css stylesheet to html how to link css page to html, how to link css file to html in eclipse, how to link css sheet to html, how to link css and js to html, how to link css to html in visual studio code, how to link css to html in atom, how to link css style to html how to link css to html css in html link javascript to html internal css in html html link how to link css to html in visual studio code css file types of css css background image html li html email link inline block css external css js link in html css syntax script tag css file example inline style react link css file to html css examples with source code css stylesheet template external css not working how to combine html and css inline css editor main html w3schools css not linking to html how to link css folder to html how to link multiple html pages to one css background color css css id link style html link style tag is placed in padding property creates external style sheet example how to save css file in html how to link to external css page why isn't my css linking to my html link rel= stylesheet meaning what is "hgroup"? why won't my css link to my html css not linking to html atom html does not link css link tag not working html how to link css to html in github css not loading on website how to link css to html, css, html, tutorial, link, stylesheet, programming, css tutorial, css3, link css to html, how to, html tutorial, html5, web development, how to link a css file to a html file, link html to css, how to link, website, css stylesheet, web, design, tutorials, hindi, html link tag, cascading style sheets (programming language), adobe dreamweaver (software), dreamweaver tutorial, how to link a html file to a css file, link css html, link html css, how to build a website, web page, language, web tutorial, web tutorials, html document, html file, css file, document, file, basic, easy, simple, quick, short, javascript, how to make a website, css for beginners, how to link html to css, html link to css, web design, cascading style sheets, sublime, external, link tag, learn, coding, style, stylesheets, urdu, hindi tutorials, external css in html, external css, html css, css tutorials, how to link css to html document, link tag in html, how to link html to css in sublime, dreamweaver, creative cloud, how to code, design a website, web design (interest), languages, in minutes, fast, joe dracup, free, strike, get, source, html (programming language), file (formation), how-to (conference subject), photoshop, adobe, notepad, windows, computer, dutch, subject (programming), meeting (quotation subject), maker, developer, how do we include css, how do we include css in our html, include css, how to include css, css tutorial youtube, what is css, what is css?, css3 for beginners, how do we use css in our website, what is a stylesheet, what a stylesheet is, style html, style html code, add css in html, css background image, basics of css, what are the basics of css, link to stylesheet, how to apply css, apply css, link css file to html, html link to css file, sublime text 3 tutorial in hindi, sublime html autocomplete, sublime 3 html autocomplete, sublime text 3 html autocomplete, sublime text 3 css autocomplete, sublime text 3 html css autocomplete, html css autocomplete sublime text 3, html css autocomplete sublime, sublime text 3 autocomplete, sublime text 3 autocomplete package, sublime text 3 html5 autocomplete, sublime text 3 css3 autocomplete, sublime text 3 hindi, sublime text 3, autocomplete, sublime packages, style sheet, style tag, best, basics, properties, selectors, rule,rsonal website, how to make a personal website, how to make a portfolio website, how to make a resume website, personal website tutorial, resume website tutorial, portfolio website tutorial, make a website, wordpress tutorial, make a website with wordpress, create a pro website, transparent navigation css, transparent menu in html, transparent menu in css and html, html and css dropdown menu, navigation menu css examples, navigation menu css, css navigation, navigation css, css navigation menu, css drop down navigation, css navigation drop down menu, drop down navigation menu css, css menu navigation, css navigm account facebook page, how to connect, how to connect instagram, how to connect insta
via YouTube https://youtu.be/JGgMsqEc9zc

How to link CSS to HTML

How to link CSS to HTML

Watch on YouTube here: How to link CSS to HTML
Via https://www.youtube.com/channel/UCcZImr64sN4bR4BB_JA82vg/videos

Privacy Policy

Privacy Policy

Effective date: September 02, 2019
All in One ("us", "we", or "our") operates the All in One mobile application (the "Service").
This page informs you of our policies regarding the collection, use, and disclosure of personal data when you use our Service and the choices you have associated with that data.
We use your data to provide and improve the Service. By using the Service, you agree to the collection and use of information in accordance with this policy. Unless otherwise defined in this Privacy Policy, terms used in this Privacy Policy have the same meanings as in our Terms and Conditions.

Information Collection And Use

We collect several different types of information for various purposes to provide and improve our Service to you.

Types of Data Collected

Personal Data

While using our Service, we may ask you to provide us with certain personally identifiable information that can be used to contact or identify you ("Personal Data"). Personally identifiable information may include, but is not limited to:
  • Email address
  • Cookies and Usage Data

Usage Data

When you access the Service by or through a mobile device, we may collect certain information automatically, including, but not limited to, the type of mobile device you use, your mobile device unique ID, the IP address of your mobile device, your mobile operating system, the type of mobile Internet browser you use, unique device identifiers and other diagnostic data ("Usage Data").

Tracking & Cookies Data

We use cookies and similar tracking technologies to track the activity on our Service and hold certain information.
Cookies are files with small amount of data which may include an anonymous unique identifier. Cookies are sent to your browser from a website and stored on your device. Tracking technologies also used are beacons, tags, and scripts to collect and track information and to improve and analyze our Service.
You can instruct your browser to refuse all cookies or to indicate when a cookie is being sent. However, if you do not accept cookies, you may not be able to use some portions of our Service.
Examples of Cookies we use:
  • Session Cookies. We use Session Cookies to operate our Service.
  • Preference Cookies. We use Preference Cookies to remember your preferences and various settings.
  • Security Cookies. We use Security Cookies for security purposes.

Use of Data

All in One uses the collected data for various purposes:
  • To provide and maintain the Service
  • To notify you about changes to our Service
  • To allow you to participate in interactive features of our Service when you choose to do so
  • To provide customer care and support
  • To provide analysis or valuable information so that we can improve the Service
  • To monitor the usage of the Service
  • To detect, prevent and address technical issues

Transfer Of Data

Your information, including Personal Data, may be transferred to — and maintained on — computers located outside of your state, province, country or other governmental jurisdiction where the data protection laws may differ than those from your jurisdiction.
If you are located outside India and choose to provide information to us, please note that we transfer the data, including Personal Data, to India and process it there.
Your consent to this Privacy Policy followed by your submission of such information represents your agreement to that transfer.
All in One will take all steps reasonably necessary to ensure that your data is treated securely and in accordance with this Privacy Policy and no transfer of your Personal Data will take place to an organization or a country unless there are adequate controls in place including the security of your data and other personal information.

Disclosure Of Data

Legal Requirements

All in One may disclose your Personal Data in the good faith belief that such action is necessary to:
  • To comply with a legal obligation
  • To protect and defend the rights or property of All in One
  • To prevent or investigate possible wrongdoing in connection with the Service
  • To protect the personal safety of users of the Service or the public
  • To protect against legal liability

Security Of Data

The security of your data is important to us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While we strive to use commercially acceptable means to protect your Personal Data, we cannot guarantee its absolute security.

Service Providers

We may employ third party companies and individuals to facilitate our Service ("Service Providers"), to provide the Service on our behalf, to perform Service-related services or to assist us in analyzing how our Service is used.
These third parties have access to your Personal Data only to perform these tasks on our behalf and are obligated not to disclose or use it for any other purpose.

Links To Other Sites

Our Service may contain links to other sites that are not operated by us. If you click on a third party link, you will be directed to that third party's site. We strongly advise you to review the Privacy Policy of every site you visit.
We have no control over and assume no responsibility for the content, privacy policies or practices of any third party sites or services.

Children's Privacy

Our Service does not address anyone under the age of 18 ("Children").
We do not knowingly collect personally identifiable information from anyone under the age of 18. If you are a parent or guardian and you are aware that your Children has provided us with Personal Data, please contact us. If we become aware that we have collected Personal Data from children without verification of parental consent, we take steps to remove that information from our servers.

Changes To This Privacy Policy

We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page.
We will let you know via email and/or a prominent notice on our Service, prior to the change becoming effective and update the "effective date" at the top of this Privacy Policy.
You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.

Contact Us

If you have any questions about this Privacy Policy, please contact us:
  • By email: info@minzor.com

😍Developer on Weekends #shorts #officememes #developermemes

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