首页 > 技术文章 > 练习5:制作爱奇异视频播放列表

hh9421 2017-11-18 20:41 原文

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>爱奇艺播放列表</title>
<style type="text/css">
div h2{
font-size:16px;
color:#4D4D4D;
}
div p:first-of-type{
color:#640000;
font-size:14px;
}
div p:last-of-type{
color:blue;
font-size:12px;
}
div{
border: solid 1px white;
display: inline-block;
}
</style>
</head>
<body>
<h1>热播</h1>
<div>
<img src="../img/img10.png">
<h2>神武赵子龙</h2>
<P>怒,林更新不抱网红抱女神</P>
<p>点击次数:242445次</p>
</div>
<div>
<img src="../img/img20.png">
<h2>旋风十一人</h2>
<p>胡歌变教练在撩前女友</p>
<P>点击次数:242445次</P>
</div>
<div>
<img src="../img/img30.png">
<h2>太阳的后裔</h2>
<p>宋慧乔吃嫩草</p>
<P>点击次数:242445次</P>
</div>
<div>
<img src="../img/img40.png">
<h2>山海经之赤影传说</h2>
<p>娜扎张翰再度联手</p>
<P>点击次数:242445次</P>
</div>


</body>
</html>

推荐阅读