Skip to main content

Posts

Showing posts with the label HTML 5

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...