Home  >  Article  >  Web Front-end  >  What does html code mean?

What does html code mean?

little bottle
little bottleOriginal
2019-05-16 11:17:0315605browse

Hypertext Markup Language (an application under Standard Universal Markup Language, foreign language abbreviation HTML) is by far the most widely used language on the Internet and the main language that constitutes web page documents.

What does html code mean?

#HTML code is text written in HTML language. HTML text is descriptive text composed of HTML commands.

HTML commands can describe text, graphics, animations, sounds, tables, links, etc. The structure of HTML includes two parts: Head and Body. The head describes the information required by the browser, and the body contains the specific content to be explained.

The following is the HTML code:

<html>    
<head>    
<meta http-equiv="content-type" content="text/html;charset=utf-8">    
<meta http-equiv="X-UA-Compatible" content="IE=Edge">    
	<meta content="always" name="referrer">    
<meta name="theme-color" content="#2932e1">    
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />    
<link rel="search" type="application/opensearchdescription+xml" href="/content-search.xml" title="百度搜索" />    
<link rel="icon" sizes="any" mask href="//www.baidu.com/img/baidu_85beaf5496f291521eb75ba38eacbd87.svg">    
	<link rel="dns-prefetch" href="//s1.bdstatic.com"/>    
	<link rel="dns-prefetch" href="//t1.baidu.com"/>    
	<link rel="dns-prefetch" href="//t2.baidu.com"/>    
	<link rel="dns-prefetch" href="//t3.baidu.com"/>    
	<link rel="dns-prefetch" href="//t10.baidu.com"/>    
	<link rel="dns-prefetch" href="//t11.baidu.com"/>    
	<link rel="dns-prefetch" href="//t12.baidu.com"/>    
	<link rel="dns-prefetch" href="//b1.bdstatic.com"/>    
<title>百度一下,你就知道</title>    
<style id="css_index" index="index" type="text/css">html,body{height:100%}

The above is the detailed content of What does html code mean?. 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
Previous article:What is html css js?Next article:What is html css js?