<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<!--
div表示最外层的盒子
-->
<div>
<!--
一般我们在开发的时候,都会添加一个透明盒子,因为有些标签上面没有的属性,可以加一个div身上就有了
-->
<div align="center">
<!--
最上面的图片
-->
<img src="img/logo6.png" />
</div>
<div>
<p align="center">
<font color="red">警告 / WARNING</font>
</p>
</div>
<div>
<p align="center">
本物品內容可能看不明白;不可將本物品內容派發,傳閱,出售,出租,交給 或出借予年齡非程序猿的人士出示,播放或播映。
</p>
</div>
<div>
<p>
<font face="verdana">
This article contains material which may offernd and may not be distributed, circulated, sold, hired, given, lent, shown,
played or projected to a person under the age of 18 years. All models are 18 or older.
</font>
</p>
</div>
<div align="center">
<img src="img/click.png" />
</div>
</div>
</body>
</html>