Home Web Front-end HTML Tutorial html学习整理-0311_html/css_WEB-ITnose

html学习整理-0311_html/css_WEB-ITnose

Jun 24, 2016 am 11:24 AM

    转了一年还是转回前端了。今天开始认认真真仔仔细细的学习前端内容。首先就是html啦。

    接触html比较晚,14年实习时候才真正接触了Java和html。现在学习的应该叫做html5了。整理一下今天所学的一些标签内容。

    首先说一下DNS:全称Domain Name System,域名系统。是因特网上作为域名和IP地址相互映射的一个分布式数据库。

    URL协议:规定URL地址的格式,URL地址就是网址。

                 规定格式:scheme://host.domain:port/path/filename

                               scheme--定义因特网服务的类型,最常见是http

                                   host--定义域主机,默认主机是www

                               domain--定义因特网域名,如w3school.com.cn

                                   port--定义主机端口号,默认端口号为80

                                   path--定义服务器上的路径,如果省略,则文档必须位于网站的根目录下

                              filename--定义文档/资源的名称

    页面标签:

               块级标签:div、p、ul、ol、dl、li、dt、h1-h6

               行级标签:span、strong、em等

               1.:此标签是定义编码格式。浏览器默认编码格式是中文,如果不设置属性值为UTF-8,会出现乱码情况。还可以通过name和content属性进行网页描述,主要针对网站SEO。

               2.标签:用法1:设置DNS预解析,如

                                   用法2:引入图标 如

                                   用法3:引入css样式 如

              3.标签中,若值为"len"表示页面内容以英语为主,若值为"zh-cn",则表示页面内容以中文为主,此属性有利于搜索引擎或者爬虫对页面的扫描。

              4.标签中,如何使一组radio只能同时选中一个值呢,就是将所有的radio标签中name属性值设为一样即可。

              5.

标签,比较规范的编写格式入下:

 1 <table> 2         <thead><!--此处为表头标签--> 3             <tr> 4                 <th>表头第一列</th> 5                 <th>表头第二列</th> 6             </tr> 7         </thead> 8         <tbody><!--此处为表内容标签--> 9             <tr>10                 <td>内容第一列</td>11                 <td>内容第二列</td>12             </tr>13         </tbody>14     </table>
Copy after login

     

Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the viewport meta tag? Why is it important for responsive design? What is the viewport meta tag? Why is it important for responsive design? Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically? How do I use the HTML5 <time> element to represent dates and times semantically? Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 &lt;time&gt; element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles