HTML5移動網站源代碼
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>我的移動網站</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="style.css"> </head> <body> <header> <h1>我的移動網站</h1> <nav> <ul> <li><a href="#">首頁</a></li> <li><a href="#">關于我們</a></li> <li><a href="#">聯系我們</a></li> </ul> </nav> </header> <main> <section class="banner"> <img src="banner.jpg"> </section> <section class="content"> <h2>歡迎來到我的移動網站</h2> <p>這是一段網站內容的介紹文字。</p> <button>更多詳情</button> </section> </main> <footer> <p>版權所有 ? 2021 我的移動網站。</p> </footer> <script src="script.js"></script> </body> </html>
以上是一個簡單的HTML5移動網站的源代碼。在頭部使用meta標簽設置了網頁的字符集和視口,使網頁能夠適應不同的移動設備屏幕大小。
在body中,使用header標簽包裹了網站的標題和導航欄,使用main標簽包裹了網站的主要內容,使用footer標簽包裹了網站的版權信息。
nav{ display: flex; justify-content: space-around; align-items: center; } .banner{ text-align: center; margin: 20px; } .banner img{ width: 100%; max-width: 600px; } .content{ text-align: center; margin: 20px; } .content h2{ font-size: 24px; margin-bottom: 10px; } .content p{ font-size: 16px; line-height: 1.5; margin-bottom: 20px; } button{ padding: 5px 10px; border-radius: 5px; background-color: #f60; color: #fff; font-size: 16px; border: none; cursor: pointer; }
以上是網站的CSS樣式代碼,使用了Flex布局進行導航欄的排列,根據不同的設備屏幕自適應展示網頁內容,并設置了按鈕的樣式。
HTML5移動網站源代碼涉及到HTML和CSS語法,需要具備一定的前端基礎知識才能進行編寫。