+ 1
How can i add video to my html code. The <video> tag doesn't seem to work. or am i the one doing it wrong?
i tried coping the video's url then pasting it in my code but it didn't work
4 Answers
+ 1
<video src="video URL" Control=""></video> maybe? Control is to make the video be able to play.
+ 1
Plese paste your code here, so we can see what are you doing wrong
+ 1
<nav>
<!-- add hyperlinks-->
<a href="index.html">HOME</a><br>
<a href="about.html">About us </a><br>
<a href= "contact.html"> Contact us </a>
</nav>
<!-- TRY THE ASIDE TAG-->
<aside>
<h2 id="hm"> HOME PAGE </h2>
<p> welcome to our home page</p>
<p> Tho nothing happens here. just wanted to waste a lil bit of your time </p>
<p style="color:pink ; font-size:large"> You can leave now </p>
</aside>
<!-- add a section Now-->
<section>
<h3 id="s2" style="color: Magenta"> About us </h3>
<p> We are a Company that deals with the sales of robots and robortic parts</p>
<p> We also deal with the creation Of AI and software development</p>
<p> Depending on your wallet, we can recommend a robot for you or your child</p>
<p> For more details please call or visit us at<br> shop 7, Nigeria Immigration Service,<br> Edo state command</p>
<p> The Phone Number Is,<br> 09056565897</p>
<p style="font-size:LARGE; background-color: blue; color: red"> THANKS FOR YOUR PATRONAGE</p>
</s
0
From where are those videos?If they are from YouTube,you should use <iframe>, I think.