BullyWiiHacks
Welcome dear guest! Very Happy

To start posting and being part of the BWH community, you simply need to register an account or log into an existing one.

If you do not wish to register at all, that's fine but there will be more advertisements. :/

You can probably see and download most content provided for regular members even without an account.

Your contributions will be greatly appreciated though, give it a shot and register today! thumbsup

Join the forum, it's quick and easy

BullyWiiHacks
Welcome dear guest! Very Happy

To start posting and being part of the BWH community, you simply need to register an account or log into an existing one.

If you do not wish to register at all, that's fine but there will be more advertisements. :/

You can probably see and download most content provided for regular members even without an account.

Your contributions will be greatly appreciated though, give it a shot and register today! thumbsup
BullyWiiHacks
Would you like to react to this message? Create an account in a few clicks or log in to continue.
BullyWiiHacks

Gaming, Modding & Programming

Important reminders:

- Click *HERE* for advanced forum search or check out the text field below on the front page for Google before posting
- NO support via private message (use the forum)
- Write meaningful topic titles
Site Translation
Latest topics
Search
 
 

Display results as :
 


Rechercher Advanced Search

January 2025
MonTueWedThuFriSatSun
  12345
6789101112
13141516171819
20212223242526
2728293031  

Calendar Calendar

Country Statistics
Free counters!

You are not connected. Please login or register

[HTML] How To Embed Videos

3 posters

Go down  Message [Page 1 of 1]

1[HTML] How To Embed Videos Empty [HTML] How To Embed Videos 7/12/2016, 3:37 am

Shadow@BWH

avatar
 
 

This is very easy all websites use it. I will pretty much be breaking down how the YouTube video link button works.

The first thing you need to do is make a base for it like so.

Code:
<video </video>

This is telling the site or giving it the command that there will be a video here. Now you have to give it a size. (width and height) or "controls".

Code:
<video width="400" height="300" controls>
</video>

Now that you have the size of the video you need to add the link or the "source" of the video and the type. Like so.

Code:
<video width="400" height="300" controls>
  <source src="video-url.mp4" type="video/mp4">
</video>

To link to a video on your computer (local, offline) within the current directory, do the following:

"./" Then the directory path: "/My_Video.mp4"
Then putting it into a code should look like the following:

Code:
<video width="400" height="300" controls>
  <source src="./My_Video.mp4" type="video/mp4">
</video>

To link to another directory on your computer:

"file:///" Then the file path: "C:\Users\USERNAME\Videos\My_Video.mp4"

Code:
<video width="400" height="300" controls>
  <source src="file:///C:\Users\USERNAME\Videos\My_Video.mp4" type="video/mp4">
</video>

Then Bam your done. Cool

2[HTML] How To Embed Videos Empty Re: [HTML] How To Embed Videos 7/12/2016, 4:10 am

I Am The Aki

I Am The Aki

Simple and easy to understand Nice Job Very Happy thumbsup

Try adding in there that you can put videos from your PC's documents. That would be fairly useful to a lot of people Wink

3[HTML] How To Embed Videos Empty Re: [HTML] How To Embed Videos 7/12/2016, 5:24 am

SnB@BWH

SnB@BWH
Admin & Writer

@Aki

I edited his post to include that. Thanks for the tip. Smile

4[HTML] How To Embed Videos Empty Re: [HTML] How To Embed Videos 12/17/2021, 5:27 pm

SnB@BWH

SnB@BWH
Admin & Writer

Moved from Tutorials > Websites to Tutorials > Web Development > HTML.

Sponsored content



Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum