HTML5是最新的網頁制作標準,它新增了很多標簽和功能。下面我將介紹其中幾個常用的代碼:
1. <video>標簽
<video src="movie.mp4" controls> Your browser does not support the <video> tag. </video>
這段代碼用于在網頁中嵌入視頻,src屬性指定視頻文件的路徑,controls屬性指定是否顯示視頻播放器的控制條。
2. <canvas>標簽
<canvas id="myCanvas" width="200" height="100"> Your browser does not support the <canvas> tag. </canvas>
這段代碼用于在網頁中創建畫布,id屬性指定畫布的唯一標識符,width和height屬性指定畫布的寬度和高度。
3. <audio>標簽
<audio src="music.mp3" controls> Your browser does not support the <audio> tag. </audio>
這段代碼用于在網頁中嵌入音頻,src屬性指定音頻文件的路徑,controls屬性指定是否顯示音頻播放器的控制條。
4. <form>標簽
<form action="/login" method="post"> Username: <input type="text" name="username"><br> Password: <input type="password" name="password"><br> <input type="submit" value="Submit"> </form>
這段代碼用于創建表單,action屬性指定表單提交的地址,method屬性指定表單提交的方式,input標簽用于創建表單元素。
以上就是幾個常用的HTML5代碼,它們為我們網頁制作提供了更多的選擇和靈活性。