Skip to main content

Posts

Showing posts from August, 2017

ADDING A VIDEO TO UR BLOG OR WEBSITE

ADDING A VIDEO TO UR BLOG OR WEBSITE Now Adding a YouTube Video to Your Blog or website so easy as opening an water bottle... Playing a YouTube Video in HTML To play your video on a web page, do the following: Upload the video to YouTube Take a note of the video id Define an <iframe> element in your web page Let the src attribute point to the video URL Use the width and height attributes to specify the dimension of the player Example: <html> <body> <iframe width="560" height="315" src="https://www.youtube.com/embed/8gTeE6pa4Kg?rel=0&amp;controls=0" frameborder="0" allowfullscreen></iframe> </body> </html> Source Learned From :  W3Schools.com  Thanks and Regards, Tech Bird

HTML LINKS

TECH BIRD🌱🐀 HTML LINKS TUTORIALS Hey guys it me me from Tech Bird  again with an help full guide in HTML5 tutorials Today i am going to share about the LINKS option in HTML What is Links ? Link are the attribute which connects two things.. eg: connecting two pages The most commonly used HTML links we use  <a href="link.html" >CLIK ME I WILL TAKE TO THE PAGE</a> Various LINKS OPTIONS present in HTML LINK TArget attribute Link Base Path Navigation to Top of the page Links within the page Email Links Image Links Phone Links Example Phone Links: <html> <head> <title>GOOGLE BIRD Phone Links Example</title> <body> <a href="tel:+91 894092XXX0">Mobile: +91 894092XXX0 </a> </body> </html> Example of Download Links: <html> <head> <title>GOOGLE BIRD Download Links Example</title> <body> <a href="https://googl

Tricky Programmers 2017

Tech BirdπŸ₯ TRICKY PROGRAMMER CONTEST HEY GUYS HERE IS AN TEST FOR PROGRAMMING BRAIN JUST TRY IT... Comment Your Answer and help other people to get inspired by Programming tricks. Question Bird 1: Create a Program which produce output "Hello World" , the program must not contains semicolon ; in other word any statement of the program will not have a termination semicolon. THANKS !😎 COME BACK TO KNOW MORE😊 FROM Tech Bird πŸ˜πŸ˜ŽπŸ˜‹

mongoDB

MongoDB is a free and open-source cross-platform document-oriented database program .  Classified as a NoSQL database program , MongoDB uses JSON-like documents with schemas. MongoDB stores data in flexible, JSON-like documents, meaning fields can vary from document to document and data structure can be changed over time. The document model maps to the objects in your application code, making data easy to work with. MongoDB is a distributed database at its core, so high availability, horizontal scaling, and geographic distribution are built in and easy to use. MongoDB is a cross-platform, document oriented database that provides, high performance, high availability, and easy scalability.  "MongoDB works on concept of collection and document" Database →Database is a physical container for collections.  →Each database gets its own set of files on the file system.  →A single MongoDB server typically has multiple databases. Collection