当前位置:网站首页>Common text labels
Common text labels
2022-07-03 19:14:00 【Calabichu manifold】
Catalog
One 、html The comments in
1.1 Comment tags
Shortcut keys for adding comments in the development environment :
- windows System : ctrl + /
- Apple system :cmd + /
1.2 General format of notes
<!-- This is a comment . Comments don't appear in the browser .-->
1.3 conditional comments
<!--[if IE 8]> .... some HTML here .... <![endif]-->
Two 、 head Commonly used labels in
2.1 meta label
2.1.1 meta The role of labels
- <meta> Element provides meta information about the page (meta-information), Description and keywords for search engine and update frequency .
- <meta> The tag is at the head of the document , It doesn't contain anything .
- <meta> The information provided is invisible to the user
2.1.2 meta Two attributes of a tag
- name attribute : It is mainly used to describe Web pages . Property value content It is mainly used for search engines to find and classify information .
<meta name="keywords" content=" Pets ,pet, Pet cat , pet dog "> <!-- Specify the keywords of the web page , For search engines -->
<meta name="description" content=" This is a pet website "> <!-- Specify the description of the web page , For search engines -->
- http-equiv attribute : In order to display the web content correctly , Information for browsers . Property value content Including various parameters Variable value .
<meta http-equiv = "Refresh" content="2;URL=https://www.itsishu.cn">
<!--( Be careful 2 The following quotation marks :2 Refresh after second , Jump to the specified page )-->
<meta http-equiv = "content-Type" charset=UTF8">
<!-- Set page parsing character set -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- When browsing web pages on mobile devices , Page not zoomed -->
<meta http-equiv = "X-UA-Compatible" content = "IE=EmulateIE8" >
<!-- stay ie When a browser browses a web page , Use ie Of IE8 edition -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <!-- Set browser rendering -->
Icon download site :https://www.iconfont.cn/
Document making website :https://tool.lu/favicon/
2.2 Not meta label
<title> Webpage title </title>
<link rel="shortcut icon" href="http://www.itsishu.cn/favicon.ico">
<!-- Set up website icons , Favorite icons -->
<link rel="stylesheet" href="base.css"> <!-- Import style file -->
<script src="login.js"></script> <!-- Import script file -->
3、 ... and 、body Commonly used labels in
3.1 Title Tag
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<h1> title 1</h1>
<h2> title 2</h2>
<h3> title 3</h3>
<h4> title 4</h4>
<h5> title 5</h5>
<h6> title 6</h6>
</body>
</html>
3.2 Paragraph and line feed labels
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<!-- Monopolize a paragraph , There will be some space before and after the paragraph -->
<p> Paragraph Tags </p>
<!-- Line break -->
<br>
<!-- Level \ Split line -->
<hr>
<!-- pre label Output in the original format of the text -->
<pre>
Work overtime 、 party 、 On a business trip 、 travel , When there is no one at home to take care of pets , One click order to walk the dog / Look at the cat 、 Door to door foster care ,
Help you take care of your pet who has been waiting for a long time at home , Including going out for a walk 、 having dinner 、 Shovel excrement and other services .
</pre>
</body>
</html>
3.3 Text formatting labels
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<b> In bold </b>
<i> Italics </i>
<u> Underline </u>
<s> Delete </s>
</body>
</html>
3.4 Image tag
<img src="dog.jpg" alt=" Pictures of dogs " title=" pet dog " width="500px" height="500px">
Attributes are in the form of key value pairs :key = “value”
3.4.1 Image tag properties
src: Path to display picture .
alt: Prompt when the picture is not loaded successfully .
title: Tips for mouse hovering .
width: Picture width , It can also be set as a percentage of the browser width
height: Picture height ( Width and height two attributes only one will automatically scale equally .)
3.4.2 Path of image label
3.4.2.1 Relative paths
- Based on the location of the referenced file , And the directory path created
- Same level path : be located HTML The file is at the same level
- Next level path :
/
- Up path :
../
<!-- Relative path mode 1 -->
<img src="./images/logo.png">
<!-- Relative path mode 2 -->
<img src="images/logo.png">
3.4.2.2 Absolute path
- The absolute location in the directory , Direct to target , Usually the path starts from the drive letter
- Or the absolute path address on the network
<!-- Absolute path mode 1 -->
<img src="D:/itsishu/images/logo.png">
<!-- Absolute path mode 2 -->
<img src="http://www.itsishu.cn/images/logo.png">
No copyright image , You can search “ No copyright image ”、“CC0” Keywords such as material
Reference resources :15 Copyright free material website points https://www.sohu.com/a/407399386_719286
15 A high-quality copyright free image website https://zhuanlan.zhihu.com/p/67544709
Four 、 Special characters are often used
5、 ... and 、 Comprehensive application
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> Two lovesickness </title>
<!-- Generate favorite small icons -->
<link rel="icon" href="favicon.ico"/>
</head>
<body>
<!-- Align the first level title in the center -->
<h1 align="center">
<img src="images/ love .png"> Two lovesickness </h1>
<p align="center">【 The song dynasty 】 Li Yu <br/></p>
<!-- Center the paragraph -->
<p align="center">
Poetry of missing your wife <b>【 Sequential reading 】</b><!-- In bold --><br/>
The withered eyes look at the remote mountain and separate the water , I've seen you for a few times, and I know ?<br/><!-- Line break -->
I'm afraid to drink a glass of wine when the pot is empty , It is difficult to write rhymes .<br/>
The road blocks people and they leave for a long time , The message was sent back late .<br/>
The night watchman is lonely , Husband remembers wife, father remembers son .
</p>
<pre align="center">
Poetry of missing husband <u><i>【 Read backwards 】</i></u><!-- Italic underline -->
My son remembers my father, my wife remembers my husband , The lonely night light is lonely .
There is no news from the late return geese , A long absence blocks the way .
Poetic charm and Cheng Nan write , A glass of wine is afraid of empty pot .
I've seen you for a few times and have been in contact , The water looks away from the mountain, and my eyes are dry .
</pre>
<p align="center">
<!-- Insert a picture -->
<img src="images/1.jfif" width="500px" title=" Two lovesickness " alt=" Mountain and sea ">
</p>
<hr/>
<p align="center">
© Liu Xu & Xu Liu <br>
< China • haikou ><!-- Use of special characters -->
</p>
</body>
</html>
6、 ... and 、 summary
This article describes some commonly used text labels and use cases .
边栏推荐
- How can I avoid "div/0!" Errors in Google Docs spreadsheet- How do I avoid the '#DIV/0!' error in Google docs spreadsheet?
- Free hand account sharing in September - [cream Nebula]
- [leetcode weekly race] game 300 - 6110 Number of incremental paths in the grid graph - difficult
- Thinking about festivals
- These problems should be paid attention to in the production of enterprise promotional videos
- [proteus simulation] a simple encrypted electronic password lock designed with 24C04 and 1602LCD
- A green plug-in that allows you to stay focused, live and work hard
- 我們做了一個智能零售結算平臺
- OSPF - detailed explanation of stub area and full stub area
- Why should the gradient be manually cleared before back propagation in pytorch?
猜你喜欢
FBI warning: some people use AI to disguise themselves as others for remote interview
235. 二叉搜索樹的最近公共祖先【lca模板 + 找路徑相同】
Thesis study - 7 Very Deep Convolutional Networks for Large-Scale Image Recognition (3/3)
Smart wax therapy machine based on STM32 and smart cloud
[academic related] how to find the innovation of top papers? Chinese universities won the CVPR Best Student Thesis Award for the first time
leetcode:556. 下一个更大元素 III【模拟 + 尽可能少变更】
[leetcode weekly race] game 300 - 6110 Number of incremental paths in the grid graph - difficult
Free hand account sharing in September - [cream Nebula]
Ctrip will implement a 3+2 work system in March, with 3 days on duty and 2 days at home every week
Summary of composition materials for 2020 high-frequency examination center of educational resources
随机推荐
Floating source code comment (38) parallel job processor
SQL injection for Web Security (1)
cipher
Record: solve the problem that MySQL is not an internal or external command environment variable
How to design a high concurrency system
Merge K ascending linked lists
Streaming media server (16) -- figure out the difference between live broadcast and on-demand
FBI警告:有人利用AI换脸冒充他人身份进行远程面试
Sqlalchemy - subquery in a where clause - Sqlalchemy - subquery in a where clause
【数学建模】基于matlab船舶三自由度MMG模型【含Matlab源码 1925期】
Why should we do feature normalization / standardization?
【Proteus仿真】用24C04与1602LCD设计的简易加密电子密码锁
The way to treat feelings
Typescript configuration
The most valuable thing
KINGS
我們做了一個智能零售結算平臺
Php based campus lost and found platform (automatic matching push)
Free year-end report summary template Welfare Collection
Why should the gradient be manually cleared before back propagation in pytorch?