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
» Dropped Out of College to Pursue Web Dev and Life Pursuits in General
[HTML] How To Embed Videos Empty4/7/2024, 2:34 pm by SnB@BWH

» Bully Made It Into a BIG Video 400K Views
[HTML] How To Embed Videos Empty4/7/2024, 6:58 am by Bully@WiiPlaza

» Wii Play Tanks
[HTML] How To Embed Videos Empty3/24/2024, 2:46 pm by helpmeout

» [Bypass Paywalls] (Global) @magnolia1234 - GitLab
[HTML] How To Embed Videos Empty3/18/2024, 3:55 am by Seth@WiiPlaza

» [Download] Mary Shelley's Frankenhole
[HTML] How To Embed Videos Empty3/16/2024, 8:29 am by Seth@WiiPlaza

» Completely Custom Modded Controllers (Undetectable)
[HTML] How To Embed Videos Empty3/5/2024, 1:55 pm by Shadow@BWH

» (Zombies) Drink perks code?
[HTML] How To Embed Videos Empty3/5/2024, 1:24 pm by Shadow@BWH

» Die Rückkehr zu STEAM und WARFACE
[HTML] How To Embed Videos Empty3/2/2024, 3:54 am by Seth@WiiPlaza

» First person hand model change?
[HTML] How To Embed Videos Empty2/28/2024, 4:53 am by Ad3lamac611

» {RELEASE} Field Raider Firefox v1.72 by Seth@WiiPlaza
[HTML] How To Embed Videos Empty2/21/2024, 8:52 am by naxil

Search
 
 

Display results as :
 


Rechercher Advanced Search

April 2024
MonTueWedThuFriSatSun
1234567
891011121314
15161718192021
22232425262728
2930     

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

Shadow@BWH
 
 

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


_________________
[HTML] How To Embed Videos BAjMdNS

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


_________________
PSN ID: I-Am-The-Aki or Punish3r_Flame
Spoiler:

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


_________________
[HTML] How To Embed Videos Simple10

[HTML] How To Embed Videos LSTjSyDDiscord: SnB_BWH

Click HERE to earn free bitcoin, litecoin, dogecoin, and dash!

Win Free Bitcoins every hour!

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.


_________________
[HTML] How To Embed Videos Simple10

[HTML] How To Embed Videos LSTjSyDDiscord: SnB_BWH

Click HERE to earn free bitcoin, litecoin, dogecoin, and dash!

Win Free Bitcoins every hour!

Sponsored content



Back to top  Message [Page 1 of 1]

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