style Style for header header background-color #333; color #fff; padding 20px; text-align center; font-size 30px; font-weight bold; letter-spacing 2px; text-transform uppercase;
<style>
/* Style for header */
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
font-size: 30px;
font-weight: bold;
letter-spacing: 2px;
text-transform: uppercase;
box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
/* Style for logo */
.logo {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 40px;
letter-spacing: 2px;
}
/* Style for navigation menu */
nav {
background-color: #555;
padding: 10px;
text-align: center;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: inline-block;
}
nav li {
display: inline-block;
margin-right: 20px;
}
nav a {
color: #fff;
text-decoration: none;
font-size: 18px;
font-weight: bold;
letter-spacing: 1px;
padding: 10px;
transition: all 0.3s ease-in-out;
border-radius: 5px;
background-color: #333;
}
nav a:hover {
background-color: #fff;
color: #333;
}
/* Style for main content */
h1 {
font-size: 42px;
font-weight: bold;
margin-top: 50px;
margin-bottom: 30px;
}
p {
font-size: 24px;
margin-bottom: 50px;
}
/* Style for online count */
.online-count {
font-size: 24px;
font-weight: bold;
margin-bottom: 50px;
}
</style>
</head>
<body>
<header>
<div class="logo">一个来自于收集互联网项目的管理网站</div>
</header>
<main>
<h1 align="center">Hello, World!该项目页面由ChatGpt提供页面技术支持</h1>
<p align="center">当前XshellGithubAnonymousRat远程协助工具实时在线:<span class="online-count"><?php
$url = "https://www.xladmin.com/shujurenshu/onlineip.php";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$output = curl_exec($ch);
curl_close($ch);
<pre><code> preg_match_all('/<body.*?>(.*?)<\/body>/si', $output, $matches);
echo $matches[1][0];
?></span>人在线</p>
</main>
</code></pre>
</body>
原文地址: https://www.cveoy.top/t/topic/bjNO 著作权归作者所有。请勿转载和采集!