Maison  >  Article  >  interface Web  >  Introduction à la structure de base des fichiers HTML

Introduction à la structure de base des fichiers HTML

王林
王林avant
2020-02-18 18:28:194093parcourir

Introduction à la structure de base des fichiers HTML

一个HTML文件的基本结构如下:

<html>
<head>...</head>
<body>...</body>
</html>

代码讲解如下:

1、称之为根标签,所有的网页标签都是在它们中间的。

2、

标签用于定义文档的头部,它是头部元素的容器。头部元素包含有、<style>、<scipt>、<link>、<meta>等标签。<p>3、在<body>和<body>标签之间的内容是网页的主体内容,如:<h1>、<span>、<a>、<img alt="Introduction à la structure de base des fichiers HTML" >、<p>等网页内容标签,在这里的标签中的内容会在浏览器中展示。<p>(推荐教程:<a href="https://www.php.cn/div-tutorial.html" target="_blank">html入门教程)<p>整体代码如下展示:<pre class="brush:html;toolbar:false"><!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>认识html文件基本结构</title> </head> <body> <h1>html文件的基本结构包含<html></html><head></head><body></body></h1> </body> </html></pre><p>浏览器展示效果:<p><img src="https://img.php.cn/upload/image/936/355/732/1582021389863140.png" title="1582021389863140.png" alt="Introduction à la structure de base des fichiers HTML"/><p>更多编程相关内容,请关注php中文网<a href="https://www.php.cn/course.html" target="_blank">编程入门栏目!</style>

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer