Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.php > #15122

Re: How to create youtube links for webpage?

From "Beauregard T. Shagnasty" <a.nony.mous@example.invalid>
Newsgroups comp.lang.php
Subject Re: How to create youtube links for webpage?
Date 2015-03-21 18:32 +0000
Organization A noiseless patient Spider
Message-ID <mekdgq$3e2$1@dont-email.me> (permalink)
References <5520c742-de1e-479f-8d3c-e7621f32b301@googlegroups.com>

Show all headers | View raw


aamirshayanshaikh wrote:

> I want to create links for my webpage by clicking which specified video
> of YouTube could play  and video must be embedded..

The necessary HTML:

<iframe 
   title="YouTube video player" 
   class="youtube-player" 
   type="text/html" 
   width="600" height="400" 
   src="http://youtube.com/embed/abcdefghijk"
   frameborder="0" allowFullScreen>
</iframe>

Naturally, you replace "abcdefghijk" with the code for your particular 
video. Adjust width and height as required.

-- 
   -bts
   -This space for rent, but the price is high

Back to comp.lang.php | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

How to create youtube links for webpage? aamirshayanshaikh@gmail.com - 2015-03-21 11:00 -0700
  Re: How to create youtube links for webpage? "Beauregard T. Shagnasty" <a.nony.mous@example.invalid> - 2015-03-21 18:32 +0000
    Re: How to create youtube links for webpage? Aamir Shaikh <aamirshayanshaikh@gmail.com> - 2015-03-21 12:31 -0700
      Re: How to create youtube links for webpage? "Beauregard T. Shagnasty" <a.nony.mous@example.invalid> - 2015-03-21 20:04 +0000
        Re: How to create youtube links for webpage? "Christoph M. Becker" <cmbecker69@arcor.de> - 2015-03-24 20:50 +0100
          Re: How to create youtube links for webpage? "Beauregard T. Shagnasty" <a.nony.mous@example.invalid> - 2015-03-24 20:45 +0000
      Re: How to create youtube links for webpage? Denis McMahon <denismfmcmahon@gmail.com> - 2015-03-24 18:56 +0000
    Re: How to create youtube links for webpage? richard <noreply@example.com> - 2015-03-22 22:33 -0400
      Re: How to create youtube links for webpage? "Beauregard T. Shagnasty" <a.nony.mous@example.invalid> - 2015-03-23 02:47 +0000

csiph-web