htm beginner notes (must read for beginners)

htm beginner notes (must read for beginners)

1. What is HTML

HTML (HyperText Markup Language): Hypertext Markup Language, a plain text language

--Use "tags" with angle brackets to identify the contents of the web page one by one

The markup language used to design web pages. Files written in this language have a suffix of .html or .htm and are interpreted and executed by the browser.

On HTML pages, you can embed program segments written in scripting languages, such as VBScript, JavaScript,

2. Basic HTML syntax

The symbols used by HTML to describe functions are called "tags", such as <p>, <h1>, etc.

-- Tags must be enclosed in angle brackets when used

--There are closed type tags and non-closed type tags

Some text here.

<h1>Some text here.</h1>

www.jb51.net

Non-enclosed type tag, also called empty tag, or single tag

-- <tag/> or <tag>

Cannot contain content

Normal text 1<br />Normal text 2

Normal text three<br>Normal text four

----------The effect is as follows: (<br> or </br> indicates line break)

www.jb51.net

The above is all the content of the htm beginner's notes (newbies must read) brought to you by the editor. I hope you will support 123WORDPRESS.COM~

Original URL: http://www.cnblogs.com/LJY0596/archive/2016/06/28/5625373.html

<<:  Detailed explanation of MySql data type tutorial examples

>>:  Teach you how to use AWS server resources for free

Recommend

How to use Vue3 to achieve a magnifying glass effect example

Table of contents Preface 1. The significance of ...

JavaScript to achieve click image flip effect

I was recently working on a project about face co...

The difference between Div and table in HTML (discussed in detail in all aspects)

1: Differences in speed and loading methods The di...

HTML symbol to entity algorithm challenge

challenge: Converts the characters &, <, &...

A quick guide to Docker

Docker provides a way to automatically deploy sof...

Detailed explanation of MySQL 8.0 password expiration policy

Starting from MySQL 8.0.16, you can set a passwor...

Docker solution for logging in without root privileges

When you use the docker command for the first tim...

How to use lazy loading in react to reduce the first screen loading time

Table of contents use Install How to use it in ro...

Install MySQL 5.7 on Ubuntu 18.04

This article is compiled with reference to the My...

JavaScript basics of this pointing

Table of contents this Method In the object Hidde...

Nexus uses API to operate

Nexus provides RestApi, but some APIs still need ...

Summary of CSS gradient effects (linear-gradient and radial-gradient)

Linear-gradient background-image: linear-gradient...