写一个html页面
Welcome to My HTML Page
This is a sample HTML page.
Here are some basic HTML tags:
- <h1>: defines a heading
- <p>: defines a paragraph
- <ul>: defines an unordered list
- <li>: defines a list item
To create your own HTML page, you can start with the following structure:
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>Heading</h1> <p>Paragraph</p> </body> </html>
原文地址: http://www.cveoy.top/t/topic/hSkV 著作权归作者所有。请勿转载和采集!