Several HTML basic knowledge points

零到壹度
Release: 2018-03-20 10:44:18
Original
2003 people have browsed it

For novices, a detailed basic knowledge point is necessary. This article summarizes several basic knowledge points of HTML for everyone. Friends who need it can refer to it. I hope it can help everyone.

HTML Heading

<p>HTML Heading (Heading) is defined through tags such as <h1> - <h6>.

<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
Copy after login

HTML paragraph

<p>HTML paragraph is defined through the <p> tag.

<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
Copy after login

HTML link

<p>HTML link is defined through the <a> tag.

<a href="http://www.baidu.com">This is a link</a>
Copy after login

HTML images

<p>HTML images are defined through the <img> tag.

<img src="w3school.jpg" width="104" height="142" />
Copy after login

HTML element

<p>HTML element refers to all the code from the start tag (start tag) to the end tag (end tag).

This is a paragraph##
##Related recommendations:
Start tag Element content End tag
##<p>

This is a link


<p>HTML Basics Tutorial

<p> WEB Front-End-HTML-Basics

<p>##HTML Basics

<p>HTML Basic Summary

The above is the detailed content of Several HTML basic knowledge points. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template