HTML的基本知识点

<!DOCTYPE HTML>
<html>
<body>

<video width="320" height="240" controls="controls">
  <source src="movie.ogg" type="video/ogg">
  <source src="movie.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>

</body>
</html>

属性的格式:属性名="属性值"

多个属性用空格分隔

 

<input>的type属性

原文地址:https://www.cnblogs.com/0820LL/p/9815198.html