answersLogoWhite

0

Html code to reduce screen size of avi file?

Updated: 8/18/2019
User Avatar

Wiki User

8y ago

Best Answer

Here is a method you can use to embed an AVI file on your webpage. Set the width and height attributes to whatever you like. It is best to keep the aspect ratio the same as the original file, so the image renders without distortion.

<object data="movie.avi" width="360" height="250"> <param name="src" value="movie.avi" /> <embed type="video/x-ms-wm" src="movie.avi" width="360" height="250"></embed>< /object>

User Avatar

Wiki User

9y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

8y ago

use height attribute

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Html code to reduce screen size of avi file?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you get rid of HTML?

open HTML file, delete "code", save file


Can someone make an HTML code where i can just put my file in and it to work please?

You have to give the complete file in order to make and HTML file. The file should be compatible with the code.


When creating an HTML file you should separate sections of HTML code with what?

spaces


What are the components of a HTML file?

The HTML file contains various components. &lt;HTML&gt; tag is used for the beginning of the code. &lt;HEAD&gt; and &lt;BODY&gt; tags are for the content.


What should be the first line of your HTML file?

The first line of your HTML file should start with &lt;!DOCTYPE HTML PUBLIC.... The first line of the actual HTML code begins with the &lt;html&gt; tag.


Difference between inline code and code behind model?

Inline code is written in html file. code behind is written in separate file.


What allows us to see the html code as a webpage?

The browser is used to parse an HTML file and return a visual representation of the code as a webpage.


What is the function of i HTML tag?

&lt;i&gt; is for italics the HTML tag itself &lt;html&gt; is to let the browser know how to read the code and you save the file as .html or .htm. It simply reference the code that the web page is written in.


How does the final HTML design look like?

To see the final design of an HTML file, load the file in your favorite web browser. The design will vary depending on the code contained in the file.


Is it true HTML code needs to be complied before it run in order for it to work?

No HTML can be written in a simple text file and saved as .html.


How do you import a flash game in a HTML document?

You will need to embed the SWF file in your HTML using the following code:


What is an embedded style?

Embedded CSS simply means that your CSS is written in an external file (i.e. not in your HTML file). The external file can be anywhere on your server and must end in ".css". You would call this CSS file from inside your HTML file like this:On the otherhand, inline CSS is when your CSS is included inside of your HTML code, for example:foo