![]() |
The |
It will play an audio playe.
Example:
PHP
<audio src="horse.ogg" controls>
Your browser does not support the audio element.</audio>
It will appear an embedded flash animation.
Example:
HTML
<!DOCTYPE html>
<html>
<body>
<h1>
The embed src attribute</h1>
<embed src="https://horje.com/avatar.png">
</body>
</html>
It will appear An <iframe> in its simplest use.
Example:
HTML
<iframe src="/default.asp"></iframe>
It will appear an image is marked up as follows.
Example:
HTML
<img src="smiley.gif" alt="Smiley face">
It will appear a HTML form with an image that represents the submit button.
Example:
HTML
<form action="/action_page.php"> First name: <input type="text" name="fname">
<br> <input type="image" src="submit.gif" alt="Submit">
</form>
It will point to an external JavaScript file.
Example:
HTML
<script src="myscripts.js"></script>
It will play an audio player with two source files.
Example:
HTML
<audio controls> <source src="horse.ogg" type="audio/ogg"> <source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
It will play a video with two subtitle tracks.
Example:
HTML
<video width="320" height="240" controls> <source src="forrest_gump.mp4" type="video/mp4"> <source src="forrest_gump.ogg" type="video/ogg"> <track src="subtitles_en.vtt" kind="subtitles" srclang="en" label="English"> <track src="subtitles_no.vtt" kind="subtitles" srclang="no" label="Norwegian">
</video>
HTML Attributes | HTML Attributes |
How to create HTML href Attribute | HTML Attributes |
HTML src Attribute | HTML Attributes |
How to create HTML width and height Attributes | HTML Attributes |
How to create HTML alt Attribute | HTML Attributes |
How to create HTML style Attribute | HTML Attributes |
How to create lang Attribute | HTML Attributes |
How to create HTML title Attribute | HTML Attributes |
How to create HTML Single or Double Quotes | HTML Attributes |
HTML Headings | HTML Attributes |
How to create HTML Headings | HTML Attributes |
Headings Are Important | HTML Attributes |
How to create HTML Bigger Headings | HTML Attributes |
Examples of HTML src Attribute in Audio | HTML Attributes |
Example of HTML src Attribute in Embed | HTML Attributes |
Example of HTML src Attribute in Iframe | HTML Attributes |
Example of HTML src Attribute in Img | HTML Attributes |
Example of HTML src Attribute in Input | HTML Attributes |
Example of HTML src Attribute in Script | HTML Attributes |
Example of HTML src Attribute in Source | HTML Attributes |
Example of HTML src Attribute in Track | HTML Attributes |
Category
: |
Web Tutorial |
Sub Category
: |
HTML Attributes |
Uploaded by
: |
Admin |
Read Article https://horje.com/learn/1434/reference