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
» Lego Stars Wars: The Complete Saga [RLGE64]
[HTML] How To Embed Videos Empty11/12/2024, 3:19 am by SnB@BWH

» JMaster Duel Bot: A Yu-Gi-Oh! Master Duel Bot and Trainer for Steam
[HTML] How To Embed Videos Empty11/10/2024, 5:26 am by Bully@WiiPlaza

» Error Injecting Drool Links Saliva Mod Menu
[HTML] How To Embed Videos Empty11/10/2024, 5:24 am by Bully@WiiPlaza

» USB Gecko problems with some games
[HTML] How To Embed Videos Empty10/16/2024, 1:59 pm by Reclaimer Shawn

» Metal Gear Solid V The Phantom Pain X Flashpoint Batman Gameplay unedited [Seth@WiiPlaza]
[HTML] How To Embed Videos Empty9/23/2024, 12:48 pm by Seth@WiiPlaza

» Dropped Out of College to Pursue Web Dev and Life Pursuits in General
[HTML] How To Embed Videos Empty8/9/2024, 7:09 am by SnB@BWH

» ASM <> Gecko Code Converter
[HTML] How To Embed Videos Empty7/29/2024, 11:15 am by Mac11ngAround

» German With a Jackhammer
[HTML] How To Embed Videos Empty7/28/2024, 3:42 pm by SnB@BWH

» Wii RAM Hacking: Pointers and ASM
[HTML] How To Embed Videos Empty7/23/2024, 1:54 pm by Mac11ngAround

» IBM AIX Assembler Programming Reference - Useful For PPC ASM
[HTML] How To Embed Videos Empty7/21/2024, 5:00 pm by Mac11ngAround

Search
 
 

Display results as :
 


Rechercher Advanced Search

November 2024
MonTueWedThuFriSatSun
    123
45678910
11121314151617
18192021222324
252627282930 

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


_________________
[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