<! DOCTYPE html >
< html>
< head>
< meta charset = " UTF-8" >
< title> 网站导航</ title>
< style>
body {
font-family : Arial, sans-serif;
display : flex;
justify-content : center;
align-items : center;
height : 100vh;
margin : 0;
background-color : #f0f0f0;
}
.container {
text-align : center;
}
.link {
display : block;
margin : 20px;
padding : 15px 30px;
background-color : #6e97ee;
color : white;
text-decoration : none;
border-radius : 5px;
font-size : 18px;
}
.link:hover {
background-color : #45a049;
}
</ style>
</ head>
< body>
< div class = " container" >
< h2> 请选择要访问的网站</ h2>
< a href = " http://网站1地址" class = " link" target = " _blank" > 外贸实训系统</ a>
< a href = " http://网站2地址" class = " link" target = " _blank" > 跨境电商平台</ a>
</ div>
</ body>
</ html>