媒体元素
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>媒体元素学习</title>
</head>
<body>
<!--音频-->
<!--<audio src="../resources/audio/王靖雯 - 善变.mp3" controls="controls" autoplay="autoplay"></audio>-->
<!--视频-->
<video src="../resources/video/李荣浩-脱胎换骨(蓝光).mp4" controls="controls" autoplay="autoplay"></video>
</body>
</html>
页面结构
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>页面结构</title>
</head>
<body>
<header>
<h2>网页头部</h2>
</header>
<section>
<h2>网页主体</h2>
</section>
<footer>
<h2>网页脚部</h2>
</footer>
</body>
</html>