Blogger Information
Blog 77
fans 0
comment 2
visits 55477
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML入门笔记1
南瓜又个梦
Original
573 people have browsed it

HTML入门笔记01

  1. HTML是谁发明的

    是李爵士还活着

  2. HTML 起手应该写什么

    1. !+Tab,默认结构。
      将页面语言改成中国简体,如果是
      1. <html lang="zh-CN">
      就不用改,不是就改成这个样子
      注意当前编码和编译器所用编码要一致,否则会乱码
    2. 先使用层级元素,然后填内容,然后设置样式
  3. 常用的表章节的标签有哪些,分别是什么意思

    • 常用层级标签
      | 标签| 意思 |
      | :——————: | :——————: |
      | h1-h6 | 表示标题 |
      | section | 段落 |
      | artical | 文章 |
      | p | 段落 |
      | header | 头部 |
      | footer | 脚步 |
      | main | 主要内容 |
      | aside | 分支内容 |
    • 全局属性标签

      • class

      css和js尽量用class,不要用id因为当id不唯一时不会报错,

      • contentteditable

      可以使任何一个元素被编辑
      一个实时调试style的方法
      把style放到body然设置style的属性display:block;和contentteditable.就可以实时调试了。

      • hidden

      可以隐藏标签

      • id

      就是id

      • style

      样式

      • tabindex
        一个聚焦标签,在没有鼠标的时候可以用来浏览网页;
        0:可以是第一个也可以是最后一个
        1:第一个
        —1:不要访问我

      • title

      在使用内容省略时,鼠标悬停来展示省略内容

  4. 常用的内容标签有哪些,分别是什么意思
    • ol+li(odered list+ list item)
      有序列表
    • ul+li(unodered list+list item)
      无序列表
    • dl+dt+dd(description list+item+data)
      介绍展示的列表,
    • pre(preview)
      让多个空格不在合并成一个空格,且使空格显示出来
    • hr
      分割线
    • br
      换行
    • a
      超链接
    • em
      强调
    • strong
      强壮
    • code
      字母等大
    • q
      行级引用
    • blockquote
      块级引用
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post