Home  >  Article  >  Web Front-end  >  Create and open HTML empty documents

Create and open HTML empty documents

PHPz
PHPzOriginal
2024-04-09 12:06:02504browse

Create HTML document: Use a text editor to enter the HTML structure and save it as a .html file. Open an HTML document: Double-click the file or use the File > Open option in your browser. Practical example: Create a new HTML file, add a title, stylesheet and content, and save it as a .html file.

创建和打开 HTML 空文档

Create and open an empty HTML document

HTML file structure

The basic structure of an HTML file is as follows:

<!DOCTYPE html>
<html>
<head>
  <title>我的 HTML 文档</title>
</head>
<body>

</body>
</html>

Creating HTML Documents

There are several ways to create HTML documents. An easy way is to use a text editor such as Notepad or Sublime Text.

  1. Open a text editor.
  2. Enter the HTML structure above.
  3. Save the file with the .html extension. For example, my_html_document.html.

Open HTML document

To open HTML document, you can use the following method:

  1. Double-click the .html file. This should open the file using your default web browser.
  2. In your web browser, go to File > Open and select your HTML file.

Practical case: Create a simple web page

Follow the following steps to create a simple web page and save it in a file:

  1. Create a New HTML file.
  2. Add a title and style sheet in the 93f0f5c25f18dab9d176bd4f6de5d30e section.
  3. Add content such as text, images, and links in the 6c04bd5ca3fcae76e30b72ad730ca86d section.
  4. Save the file with a .html extension, such as index.html.
  5. Double-click the index.html file or open it in a web browser to view your page.
<!DOCTYPE html>
<html>
<head>
  <title>我的第一个网页</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      font-size: 16px;
    }

    h1 {
      color: blue;
    }
  </style>
</head>
<body>

  <h1>欢迎来到我的第一个网页!</h1>

  <p>这是我使用 HTML 创建的第一个网页。我已经添加了一些文本、图像和链接来展示我能用 HTML 做什么。</p>

  <img src="image.jpg" alt="图片">

  <a href="https://www.example.com">示例链接</a>

</body>
</html>

The above is the detailed content of Create and open HTML empty documents. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn