搜索引擎如何識別視頻?
img標籤有alt屬性:瀏覽器如何識別視頻?
<img src="smiley.gif" alt="Smiley face" height="42" width="42">
的鏈接標籤具有標題:
<a href="www.apple.com" title="title of the link">this is a link</a>
什麼視頻標籤? 我一直在尋找,它似乎並沒有什麼樣的屬性,以幫助 瀏覽器識別視頻
https://www.w3.org/wiki/HTML/Elements/video
https://www.w3schools.com/tags/tag_video.asp
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
甚至不是一個嵌入YouTube:
<iframe width="560" height="315"
src="https://www.youtube.com/embed/zuCJYhLCN4E" frameborder="0" allowfullscreen
</iframe>
在頁面* *元數據https://developers.google.com/網站管理員/ videosearch /架構 –
Alex K.我認爲你的答案是正確的。您應該將其作爲答案,而不僅僅是評論 – Nrc