html简单网页代码
Welcome to My Simple HTML Page
About HTML
HTML stands for HyperText Markup Language. It is the standard markup language for creating web pages and web applications. HTML structure web content
providing the basic layout and formatting. It uses tags to define elements such as headings
paragraphs
images
links
and more. HTML is essential for building websites and it is the foundation of front-end web development.
Basic HTML Tags
Here are some commonly used basic HTML tags:
- <html>: the root element of an HTML page. It contains all other elements.
- <head>: contains meta information about the HTML page
such as character encoding.
- <title>: defines the title of the HTML page
displayed in the browser's title bar or tab.
- <body>: contains the visible content of the HTML page
including text
images
links
and more.
- <h1> to <h6>: define heading elements
with <h1> being the largest and <h6> being the smallest.
- <p>: defines paragraphs of text.
- <a>: defines a hyperlink
linking to another webpage or a specific location within the same webpage.
- <img>: embeds an image in the HTML page.
- <ul>: creates an unordered list.
- <li>: defines a list item within an unordered list or ordered list.
Example Code
Here's an example of a simple HTML page:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Simple HTML Page</title>
</head>
<body>
<h1>Welcome to My Simple HTML Page</h1>
<p>This is a paragraph of text.</p>
<a href="https://www.example.com">Click me</a> to visit example.com.
</body>
</html>
Conclusion
HTML is a fundamental language in web development. It allows you to create structured and well-formatted web pages. Understanding the basic HTML tags and their usage is essential for building websites. I hope this simple HTML page and the provided information were helpful to you.