Horje
how to write text on video in html Code Example
how to write text on video in html
.container { position:relative; }
.container video {
    position:relative;
    z-index:0;
}
.overlay {
    position:absolute;
    top:0;
    left:0;
    z-index:1;
}
how to write text on video in html
<div class="container">
    <video id="video" width="770" height="882" onclick="play();">
        <source src="video/Motion.mp4" type="video/mp4" />
    </video>
    <div class="overlay">
        <p>Content above your video</p>
        <form>
            <p>Content Below Your Video</p>
            <label for="input">Form Input Label</label>
            <input id="input" name="input" value="" />
            <button type="submit">Submit</button>
        </form>
    </div>
</div>




Css

Related
HTML put text ovr top of mp4 Code Example HTML put text ovr top of mp4 Code Example
css unlock scroll Code Example css unlock scroll Code Example
css affect all child elements Code Example css affect all child elements Code Example
html list bullets not centered Code Example html list bullets not centered Code Example
difference between html and css Code Example difference between html and css Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7