一、HyperText Markup Language   内容,html是弱代码语言,代码编写不严谨

1、超链接  <a href="#">超级链接(anchor)</a>

写超链接的href地址的时,要注意是否有写相应的解析协议,没有设置协议时,按照默认的本地文件的文本协议

https,http,邮件,自定义(迅雷)等;

2、其他标签

<address>地址(address)</address>

<b>粗体(bold)</b>
    <big>放大(big)</big>
    <blockquote> 引用块(blockquote)</blockquote>
    <br/> 换行(break)

<center> 居中(center)</center>
    <cite>引用(cite)</cite>
    <code>代码(code)</code>

<del> 删除(delete)</del>
    <dfn> 定义(definition)</dfn>
    <div> 区块(division)</div>
    <em> 强调(emphasize)</em>

<hr/> 横线(horizontal)

<i> 斜体(italic)</i>

    <u>下划线(italic)</u>

<p>p 段落(paragraph)</p>
    <pre>按预定格式显示的文本(Preformatted)</pre>
    <q>引用(quote)</q>

    <samp>例子(sample)</samp>
    <small>缩小(small)</small>
    <span>文本段(span)</span>
    <strong>重点强调(strong emphasized)</strong>
·   <sub>下标(subscript)</sub>
    <sup>上标(superscript)</sup>
    <textarea>多行文本输入区(textarea)</textarea>
    <tt>电传打字机(teletype)(等宽字体)</tt>
     <var>可变文本(variable)</var> 
3、标题标签

<h1>标题1</h1>

<h2>标题2</h2>

<h3>标题3</h3>

<h4>标题4</h4>

<h5>标题5</h5>

<h6>标题6</h6>

4、列表标签 ——

[1]、dl 字典列表(dictionary list)

  <dl>

    <dt>dt 字典标题(dictionary title)</dt>

    <dd>dd 字典数据(dictionary data)</dd>

    <dt>dt 字典标题(dictionary title)</dt>

 <dd>dd 字典数据(dictionary data)</dd>

  </dl>

[2]、ol 有序列表(order list)

<ol>

<li>li 列表项(list item)</li>

<li>li 列表项(list item)</li>

</ol>

[3]、ul 无序列表(unordered list)

<ul>
       <li>列表项(list item)</li>
       <li> 列表项(list item)</li>
 </ul>

5、表单标签
<form action="#" method="post">表单(form)</form>

<img src="#" alt="图片" />图片(image)
<input type="text" name="name" value="" />input,type='text' 文本输入框(text)
<input type="radio" name="name" value="" />input,type='radio' 单选框(radio)
<input type="checkbox" name="name" value="" />input,type='checkbox' 复选框(checkbox)
<input type="file" name="name" value="" />input,type='file' 文件选择框(file)
<input type="hidden" name="name" value="" />input,type='hidden' 隐藏域(hidden)
<input type="image" name="name" value="" />input,type='image' 图片按钮(image)
<input type="password" name="name" value="" />input,type='password' 密码输入框(password)
<input type="reset" name="name" value="reset" />input,type='reset' 重置按钮(reset)
<input type="submit" name="name" value="submit" />input,type='submit' 提交按钮(submit)
<input type="button" name="name" value="button" />input,type='button' 按钮

6、下拉列表框

select 选择列表(select)

<select>

<option value="value">option 选择项(option)</option>

</select>

7、table 表格(table)
<table border="0" cellpadding="0" cellspacing="0">

  <tr>

    <td>td 表格数据(table data)</td>

    <td>td 表格数据(table data)</td>

  </tr>

  <tr>

    <td>td 表格数据(table data)</td>

    <td>td 表格数据(table data)</td>

  </tr>

</table>

html基础概念的更多相关文章

  1. 【Machine Learning】机器学习及其基础概念简介

    机器学习及其基础概念简介 作者:白宁超 2016年12月23日21:24:51 摘要:随着机器学习和深度学习的热潮,各种图书层出不穷.然而多数是基础理论知识介绍,缺乏实现的深入理解.本系列文章是作者结 ...

  2. TCP/IP基础概念及通信过程举例

    TCP/IP基础概念及通信过程举例 出现 上个世纪60年代,由于中央集中式网络的容灾性较弱,以美国国防部为中心的一家组织研究出分组交换网络.后来为了验证分组交换技术的实用性,ARPANET出现了,并且 ...

  3. Jmeter基础之---jmeter基础概念

    Jmeter基础之---jmeter基础概念 JMeter 介绍: 一个非常优秀的开源的性能测试工具. 优点:你用着用着就会发现它的重多优点,当然不足点也会呈现出来. JMeter 介绍: 一个非常优 ...

  4. 快速入门系列--WCF--01基础概念

    转眼微软的WCF已走过十个年头,它是微软通信框架的集大成者,将之前微软所有的通信框架进行了整合,提供了统一的应用方式.记得从自己最开始做MFC时,就使用过Named Pipe命名管道,之后做Winfo ...

  5. 理解 angular2 基础概念和结构 ----angular2系列(二)

    前言: angular2官方将框架按以下结构划分: Module Component Template Metadata Data Binding Directive Service Dependen ...

  6. JavaBean 基础概念、使用实例及代码分析

    JavaBean 基础概念.使用实例及代码分析 JavaBean的概念 JavaBean是一种可重复使用的.且跨平台的软件组件. JavaBean可分为两种:一种是有用户界面的(有UI的):另一种是没 ...

  7. RabbitMQ基础概念详细介绍

    http://blog.csdn.net/column/details/rabbitmq.html 转至:http://www.ostest.cn/archives/497 引言 你是否遇到过两个(多 ...

  8. linux设备驱动归纳总结(二):模块的相关基础概念【转】

    本文转载自:http://blog.chinaunix.net/uid-25014876-id-59415.html linux设备驱动归纳总结(二):模块的相关基础概念 系统平台:Ubuntu 10 ...

  9. linux设备驱动归纳总结(一)内核的相关基础概念【转】

    本文转载自:http://blog.chinaunix.net/uid-25014876-id-59413.html linux设备驱动归纳总结(一):内核的相关基础概念 xxxxxxxxxxxxxx ...

  10. 什么是JavaScript闭包终极全解之一——基础概念

    本文转自:http://www.cnblogs.com/richaaaard/p/4755021.html 什么是JavaScript闭包终极全解之一——基础概念 “闭包是JavaScript的一大谜 ...

随机推荐

  1. 41.oracle索引,分析索引,索引碎片整理

    概述 索引分为B树索引和位图索引.我们主要研究B树索引,B树索引如下图(图片源自网络):

  2. 将python的代码文件打包成可执行文件

    1.使用pip install Pyinstaller  命令安装 2.使用命令 pyinstaller -F  *.py打包成exe 3.在\dist文件夹下找到exe; 一.pyinstaller ...

  3. js 实现星级评分

    最近的项目中有一个星级评分的需求,  自己就写了一下, 由于可能一个页面要用到多个,就采用了面向对象的写法. 用到的png图片也放到这里.    js要用到jquery. css: .sr-star{ ...

  4. [转] Mock以及Mockito的使用

    http://www.open-open.com/lib/view/open1462177583813.html [From] http://www.open-open.com/lib/view/op ...

  5. ZendStudio操作技巧

    1.恢复窗口默认布局 点开菜单栏上的“windows”,出来的菜单中有个“Reset Perspective...”,点这个就行了

  6. 第3章—高级装配—bean的作用域

    bean的作用域 bean的默认作用域 Spring定义了多种作用域,可以基于这些作用域创建bean,包括: 单例(Singleton):在整个应用中,只创建bean的一个实例. 原型(Prototy ...

  7. 重签名android测试包

    我的一个例子:jarsigner -digestalgSHA1 -sigalg MD5withRSA -keystore C:\Users\sunyang\.android\debug.keystor ...

  8. 18.async函数

    1.含义 async 函数是什么?一句话,它就是 Generator 函数的语法糖. 前文有一个 Generator 函数,依次读取两个文件. var fs = require('fs'); var ...

  9. graphql pass arg

    ; ; var xhr = new XMLHttpRequest(); xhr.responseType = 'json'; xhr.open("POST", "http ...

  10. Oracle 创建表空间和用户

    创建用户: 建立表空间和用户的步骤: 用户 建立:create user 用户名 identified by "密码"; 授权:grant create session to 用户 ...