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

Solution to the failure of entering the container due to full docker space

Since the problem occurred rather suddenly and th...

How to implement MySQL bidirectional backup

MySQL bidirectional backup is also called master-...

Detailed explanation of the use and precautions of crontab under Linux

Crontab is a command used to set up periodic exec...

Markup Language - List

Standardized design solutions - markup languages ...

9 super practical CSS tips to help designers and developers

A web designer's head must be filled with a lo...

JS interview question: Can forEach jump out of the loop?

When I was asked this question, I was ignorant an...

How to make your JavaScript functions more elegant

Table of contents Object parameters using destruc...

Docker container orchestration implementation process analysis

In actual development or production environments,...

A brief discussion on Flink's fault-tolerant mechanism: job execution and daemon

Table of contents 1. Job Execution Fault Toleranc...

Syntax alias problem based on delete in mysql

Table of contents MySQL delete syntax alias probl...

Summary of commonly used commands for docker competition submission

Log in to your account export DOCKER_REGISTRY=reg...

Vue.set() and this.$set() usage and difference

When we use Vue for development, we may encounter...

A brief discussion on the implementation principle of Vue slot

Table of contents 1. Sample code 2. See the essen...

Detailed explanation of Linux commands sort, uniq, tr tools

Sort Tool The Linux sort command is used to sort ...