152 lines
3.3 KiB
PHP
152 lines
3.3 KiB
PHP
<html>
|
|
<head>
|
|
<meta charset="utf-8" lang="zh-CN">
|
|
<link rel="stylesheet" type="text/css" href="./static/css/navbar/body_color.css">
|
|
<link rel="icon" type="img/icon" href="./static/icon/original.ico">
|
|
</head>
|
|
|
|
<body>
|
|
<?php
|
|
$title = "Message | 留言";
|
|
// title 变量
|
|
|
|
echo "<title>" . "$title" . "</title>";
|
|
// 页面标题
|
|
?>
|
|
<body id="body_color">
|
|
<div id="message_block">
|
|
<div id="content_page">
|
|
<?php
|
|
echo "<h1>欢迎来到 $title</h1>";
|
|
// 欢迎语
|
|
|
|
echo "感谢您的访问" . " " . "<br>" . "顾名思义" . "$title" . "就是用来记录留言的地方";
|
|
// 介绍部分
|
|
?>
|
|
<div id="back_blok">
|
|
<!-- 返回主页 -->
|
|
<a id="back_url" href="https://ww3.tw/"><b>..返回主页</b></a>
|
|
</div>
|
|
<div id="message_video">
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<h1>
|
|
暂无视频
|
|
</h1>
|
|
</div>
|
|
<div id="message_com">
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
评论展示区
|
|
<div id="message_com_black">
|
|
发送区
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</body>
|
|
</html>
|
|
|
|
<!-- php 引入 -->
|
|
<?php
|
|
include "./static/css/navbar/index-css.html";
|
|
// 引入navbar-css
|
|
?>
|
|
<!-- php 引入 -->
|
|
|
|
<style>
|
|
/* 这里是专属css */
|
|
#content_page
|
|
{
|
|
color: rgb(255, 74, 74);
|
|
text-align: left;
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
#message_video
|
|
{
|
|
background-color: blue;
|
|
color: white;
|
|
text-align: center;
|
|
width: 60%;
|
|
height: 69%;
|
|
margin: auto;
|
|
position: absolute;
|
|
top: 22%;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
/* 页面边距 上、右、下、左 */
|
|
margin: 1.89% 0px 0px 0%;
|
|
}
|
|
|
|
#message_com
|
|
{
|
|
background-color: white;
|
|
text-align: center;
|
|
width: 33%;
|
|
height: 69%;
|
|
margin: auto;
|
|
position: absolute;
|
|
top: 22%;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
/* 页面边距 上、右、下、左 */
|
|
margin: 1.89% 0px 0px 63.8%;
|
|
}
|
|
|
|
#message_com_black
|
|
{
|
|
background-color: black;
|
|
color: white;
|
|
width: 100%;
|
|
height: 8%;
|
|
margin: auto;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
/* 页面边距 上、右、下、左 */
|
|
margin: 108% 0px 0px 0%;
|
|
}
|
|
|
|
#back_blok{
|
|
/* 返回主页 */
|
|
color: rgb(0, 0, 0);
|
|
width: 20%;
|
|
height: 4%;
|
|
margin: auto;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
/* 页面边距 上、右、下、左 */
|
|
margin: 4% 0px 0px 36.8%;
|
|
}
|
|
|
|
#back_url
|
|
{
|
|
color: black;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
//这里是专属js
|
|
|
|
|
|
|
|
</script>
|