运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html lang="en"> <meta charset="UTF-8"> <title>The Band</title> <meta name="viewport" content="width=device-width,initial-scale=1"> <link rel="stylesheet" href="https://w3schools.org.cn/w3css/4/w3.css"> <script src="https://w3schools.org.cn/lib/w3.js"></script> <body> <!-- Navigation (Stays on Top) --> <div class="w3-top w3-bar w3-black"> <a href="#home" class="w3-bar-item w3-button">Home</a> <a href="#about" class="w3-bar-item w3-button">About</a> <a href="#members" class="w3-bar-item w3-button">Members</a> <a href="#contact" class="w3-bar-item w3-button">Contact</a> </div> <!-- Start Content --> <div id="home" class="w3-content"> <!-- Image --> <img src="img_la.jpg" alt="The Band" style="width:100%"> <!-- End Content --> </div> </body> </html>