HTML留言板
留言列表
- 用戶1:內容1
- 用戶2:內容2
- 用戶3:內容3
添加留言
<html> <head> <title>HTML留言板</title> </head> <body> <h1>HTML留言板</h1> <h2>留言列表</h2> <ul> <li> <strong>用戶1:</strong>內容1 </li> <li> <strong>用戶2:</strong>內容2 </li> <li> <strong>用戶3:</strong>內容3 </li> </ul> <h2>添加留言</h2> <form> <label>用戶名:</label><br> <input type="text" name="username"><br> <label>留言內容:</label><br> <textarea name="content"></textarea><br> <input type="submit" value="提交"> </form> </body> </html>
上面是一個簡單的HTML留言板示例,其中包括留言列表和添加留言功能。我們可以看到留言板的頁面結構采用了常見的HTML標記,如:標題(h1、h2)、列表(ul、li)、表單(form、input、textarea)。此外,為了方便閱讀代碼,我們還用
標記把HTML代碼固定在一個區域內,保證代碼的格式與空格都不會被解釋器修改。
上一篇Vue彈窗組件居中