请参考网址https://m.ctrip.com/webapp/you/tripshoot/paipai/home/home,写一个移动端html页面,请给出完整代码
时间: 2023-10-01 11:08:04 浏览: 247
<p>抱歉,作为AI语言模型,我无法打开该网址并编写相关代码。但您可以尝试以下样例代码,以此为基础进行修改:</p> <!DOCTYPE html> <html> <head> <title>移动端HTML页面</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; } header { background-color: #333; color: #fff; padding: 10px; text-align: center; } nav { background-color: #f1f1f1; padding: 10px; text-align: center; } nav a { color: #333; font-weight: bold; padding: 5px; text-decoration: none; } nav a:hover { background-color: #333; color: #fff; } section { padding: 10px; text-align: center; } </style> </head> <body> <header> <h1>移动端HTML页面</h1> </header> <nav> <a href="#">链接1</a> <a href="#">链接2</a> <a href="#">链接3</a> </nav> <section> <h2>内容标题</h2> <p>这里是内容区域,您可以在此添加您的内容。</p> </section> </body> </html>