<!DOCTYPE html>
<html lang="en">?
<head>?
<meta charset="UTF-8">?
<meta name="viewport" content="width=device-width, initial-scale=1.0">?
<title>簡單H5頁面模板</title>?
<style>?
? ? body {?
? ? ? ? font-family: Arial, sans-serif;?
? ? ? ? margin: 0;?
? ? ? ? padding: 0;?
? ? ? ? background-color: #f2f2f2;?
? ? }?
? ? .container {?
? ? ? ? max-width: 600px;?
? ? ? ? margin: 0 auto;?
? ? ? ? padding: 20px;?
? ? ? ? background-color: #fff;?
? ? ? ? box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);?
? ? }?
? ? h1 {?
? ? ? ? text-align: center;?
? ? ? ? color: #333;?
? ? }?
? ? p {?
? ? ? ? color: #666;?
? ? ? ? line-height: 1.6;?
? ? }?
? ? .button {?
? ? ? ? display: block;?
? ? ? ? width: 100%;?
? ? ? ? padding: 10px;?
? ? ? ? background-color: #4CAF50;?
? ? ? ? color: #fff;?
? ? ? ? text-align: center;?
? ? ? ? text-decoration: none;?
? ? ? ? border: none;?
? ? ? ? border-radius: 4px;?
? ? ? ? cursor: pointer;?
? ? ? ? margin-top: 20px;?
? ? }?
? ? .button:hover {?
? ? ? ? background-color: #45a049;?
? ? }?
</style>?
</head>?
<body>?
<div class="container">?
? ? <h1>歡迎來到我的H5頁面</h1>?
? ? <p>這是一個簡單的H5頁面模板,你可以根據(jù)自己的需求進行修改和擴展。</p>?
? ? <button class="button" onclick="alert('你點擊了按鈕氓栈!')">點擊我</button>?
</div>?
<script>?
? ? // 這里可以添加你的JavaScript代碼?
? ? // 例如燕刻,你可以處理按鈕點擊事件怖喻、添加動畫效果等?
</script>?
</body>?
</html>