HTML elements 分类别介绍

The HTML elements below are grouped by function.

1.Basic elements
Basic elements are the backbone of any HTML documents.
<html>

2.Document metadata
Metadata contains information about the page. This includes information about styles, scripts, and data to help software use and render the page.
Metadata for styles and scripts may be defined in the page or link to another file that has the information.

<base>: <base target="_blank" href="http://www.example.com/page.html">
<head>: <head>
    		<title>Document title</title>
  	     </head>
<link>: <link href="style.css" rel="stylesheet">
<meta>: <meta charset="utf-8">
	      The HTML<meta> element represent any metadata information that cannot be represented by one of the other HTML meta-related elements.
<style>: <style type="text/css">
	        body {
 	           color:red;
	        }
	    </style>
<title>: <title>Awesome page title</title>

3.Content sectioning
Content sectioning elements allow you to organize the document content into logical pieces.
Using the sectioning elements to create a broad outline for your page content, including header and footer navigation, and heading elements to identify sections of content.

<address>
<article>
<footer>
<header>
<h1>, <h2>, <h3>, <h4>, <h5>, <h6>
<hgroup>
<nav>
<section>

4.Text content
Use HTML text content elements to organize blocks or sections of content placed between the opening <body> and closing </body> tags. these elements identify the purpose or structure of that content.

<dd>:
<div>
<dl>
<dt>
<figcaption>
<figure>
<hr>
<li>
<main>
<ol>
<p>
<pre>
<ul>

5.Inline text semantics
Use the HTML inline text semantic to define the meaning, structure, or style of a word, line, or any arbitrary place of text.

<abbr>
<b>
<bdi>
<bdo>
<br>
<cite>
<code>
<data>
<dfn>
<em>
<i>
<kbd>
<mark>
<q>
<rp>
<rt>
<rtc>
<ruby>
<s>
<samp>
<small>
<span>
<strong>
<sub>
<sup>
<time>
<u>
<var>
<wbr>

6.Image and multimedia
HTML supports various multimedia resources such as images, audio, and video.

<area>
<audio>
<map>
<track>
<video>

7.Embedded content
In addition to regular multimedia content, HTML can include a variety of other content, even if it‘s not always easy to interact with.

<embed>
<object>
<param>
<source>

8.Scripting
In order to create dynamic content and web applications, HTML supports the use of scripting languages, most prominently JavaScript. Certain elements supports this capability.

<canvas>
<noscript>
<script>

9.Demarcating edits
These elements let you provide indications that specific parts of the text have been altered.

<del>
<ins>

 10.Table content
The elements here are used to create and handle tabular data.

<caption>
<col>
<colgroup>
<table>
<tbody>
<td>
<tfoot>
<th>
<thead>
<tr>

11.Forms
HTML provides a number of elements which can be used together to create forms which the user can fill out and submit to the Web site or application. There‘s a great deal of further information about this available in the HTML forms guide.([HTML forms guide] 下周再总结吧)

<button>
<datalist>
<fieldset>
<form>
<input>
<keygen>
<label>
<legend>
<meter>
<optgroup>
<option>
<output>
<progress>
<select>
<textarea>

12.Interactive elements
HTML offers a selection of elements which help to create interactive user interface objects.

<details>
<dialog>
<menu>
<menuitem>
<summary>

13.Web Components
Web Components is an HTML-related technology which makes it possible to, essentially, create and use custom elements as if it were regular HTML. In additon, you can even create custom versions of standard HTML elements, as well.

<content>
<element>
<shadow>
<template>

14.Obsolete and deprecated elements

<acronym>
<applet>
<basefont>
<big>
<blink>
<center>
<command>
<content>
<dir>
<font>
<frame>
<frameset>
<isindex>
<keygen>
<listing>
<marquee>
<noembed>
<plaintext>
<spacer>
<strike>
<tt>
<xmp>
时间: 2024-07-31 03:09:38

HTML elements 分类别介绍的相关文章

ggplot2:分面的介绍

1.分面 分面是指在一个页面上自动摆放多幅图形的技巧,也就是说可以让不同分类的图同时展示在一张图上,这样方便于数据之间的的比较.ggplot2提供了网格型(facet_grid)和封装型(facet_wrap)两种分面类型,下面就针对不同的两种分面进行介绍. 1.1 网格分面(facet_grid) 如果我们对图像什么也不改变,或者加上facet_null()则不会出现分面效果(如下所示). library("ggplot2") mpg2<-subset(mpg,cyl!=5&a

Mysql分表和分区的区别、分库分表介绍与区别

分表和分区的区别: 一,什么是mysql分表,分区 什么是分表,从表面意思上看呢,就是把一张表分成N多个小表,具体请看:mysql分表的3种方法 什么是分区,分区呢就是把一张表的数据分成N多个区块,这些区块可以在同一个磁盘上,也可以在不同的磁盘上,具体请参考mysql分区功能详细介绍,以及实例 二,mysql分表和分区有什么区别呢 1,实现方式上 a),mysql的分表是真正的分表,一张表分成很多表后,每一个小表都是完正的一张表,都对应三个文件,一个.MYD数据文件,.MYI索引文件,.frm表

Word 分节介绍

分节的作用 分节符,顾名思义,把你的文档分成几个节,比如好比一本书,有几个章节,每个章节有着不同的排版.将Word分节可以对每一节的样式单独操作.可以对每一节的页眉页脚页码等单独定义. 如何分节 使用注意 使用时需要注意一下几点: 1:定义分节的方式 2:定义分节的位置 3:定义分节后取消"与上一节相同" 4:重复点 "解链接到前一条页眉".即:先取消与上一节相同,后选择与上一节相同. 如图:

Mysql分区和分表介绍

为什么要分区和分表 我们的数据库数据越来越大,随之而来的是单个表中数据太多,以至于查询速度过慢,而且由于表的锁机制导致应用操作也受到严重影响,出现数据库性能瓶颈. MySQL中有一种机制是表锁定和行锁定,是为了保证数据的完整性.表锁定表示你们都不能对这张表进行操作,必须等我对表操作完才行.行锁定也一样,别的sql必须等我对这条数据操作完了,才能对这条数据进行操纵.但出现这种情况时,我们可以考虑分表或者分区. 分表 什么是分表 分表是将一个大表按照一定的规则分解成多张具有独立存储空间的实体表,每个

activiti搭建(五)BPMN介绍

对于BPMN我也不是十分清楚,目前也只是因为对于Modeler中不熟悉的组件查询,来对这部分的内容进行学习,不求一次理解,边学边理解吧.所以这一章的介绍会比较简单,但也足够了. Modeler中的组件列表划分和BPMN的略微有些不同,而且有些内容好像也没有,最后移植到自己的demo中,还遇到了一些问题,如果可能的话,之后会详细介绍一下Modeler的构成,大致是官方文档的第七节Overview以及第十节Process(重要),网上已有人将其归纳总结过了 http://wenku.baidu.co

面向对象基础-初步介绍

面向对象中的基础介绍: 一:在面向对象的方法中:一切事物皆对象,只要是对象就会分类别:只要是对象就会有属性. 二:面向对象的三个属性:封装.继承.多态: 封装含义:把一些功能的实现细节不对外暴露: 继承含义:一段代码,重复使用(代码重用): 多态含义:一种接口,多种实现(接口重用): 三:新式类与经典类的区别:多继承上的顺序问题, 查询策略: 广度优先:先查找横向策略再去查纵向(新式类的查询策略): 深度优先:顺序查询(经典类的查询策略): py2的经典类是按照深度优先来继承的,新式类是按广度优

LevelDb简单介绍和原理——本质:类似nedb,插入数据文件不断增长(快照),再通过删除老数据做更新

转自:http://www.cnblogs.com/haippy/archive/2011/12/04/2276064.html 有时间再好好看下整个文章! 说起LevelDb也许您不清楚,但是如果作为IT工程师,不知道下面两位大神级别的工程师,那您的领导估计会Hold不住了:Jeff Dean和Sanjay Ghemawat.这两位是Google公司重量级的工程师,为数甚少的Google Fellow之二. Jeff Dean其人:http://research.google.com/peop

全面介绍充满魔性的Placement

相信每个数字后端PR工程师都知道Placement.它是我们设计芯片的两大目的之一--布局布线(Place&Route).这也是最体现EDA工具的实力强大之处.可能大家平时只是简单的运行一个命令,但是对工具来说,要把几千万个标准单元在几个小时之内正确地摆放好,这是一件非常困难的事情.那今天我们就来学习一下这充满魔性的Placement. 笼统划分的话,Floorplan之后,CTS之前的的stage都归为Placement(现在place已经与preCTS合并为place_opt,传统的crea

MySQL之分库分表(MyCat)

分库分表介绍: 随着微服务这种架构的兴起,我们应用从一个完整的大的应用,切分为很多可以独立提供服务的小应用.每个应用都有独立的数据库. 数据的切分分为两种: 垂直切分:按照业务模块进行切分,将不同模块的表切分到不同的数据库中. 水平切分:将一张大表按照一定的切分规则,按照行切分到不同的表或者不同的库中. MyCat介绍: 网站链接:http://www.mycat.io/ 关键特性 支持SQL92标准 支持MySQL.Oracle.DB2.SQL Server.PostgreSQL等DB的常见S