Home > Article > Backend Development > Html content introduction
Introduction to HTML content
I have recently been learning PHP development, so I have comprehensively learned HTML, CSS and other related content. The learning progress depends on the video content. Now the content about html introduced in the introductory video:
About Chuanzhi Podcast Teacher Han Shunping’s PHP from entry to proficiency video. I have collected a total of 149 lectures. Among them, lectures 1-9 are the html part, and lectures 10-22 are the css part. After Lecture 22, there is the PHP part. Because the main purpose is to learn PHP, the teacher is destined not to be too detailed about the content of HTML and CSS, and only emphasizes the key points.
HTML part
Chapter 001 Lecture:
Html introduction, html operating principle. Html4.0 to html5.0 ApacheFixed directory of the server http://localhost/(The root directory of the Apacheserver)
Lecture003: The standard format of
Html, html and htm Differently,
htm takes priority over html
and is accessed first. index.htm takes priority over index.html files. Single tag and double tag of Html Lecture 004: The symbol entity of Html, the symbol of html itself Chapter 005
Speaks: Ordered list, unordered list, frame
(In fact, these attributes ofhtml should be said to be the browser’s standard parsing of files in the html format, so it should be basically understandable by consulting the information )
Lecture 006:
(an important point about the network)
1. Submit content from the form in html to the server: (get and
post There is a big difference, which will be introduced in detail later) Get will display the password directly in the address bar, which is quite unsafe
PostAt least it will not put the password directly in the address bar In Of course, the packet capture tool can also capture:
Submit data to the server in the form
:The action is set here
not only will the data be Submit it and be redirected directly to thisok.html
page; of course it should also be set through fields.
Lecture
007:
Forms and form controls
check boxes, radio boxes, text, text fields, drop-down boxes, etc. The focus is on form data submission (tophpbackend server),
Chapter 008
Lecture:Embed music and embed movies in static web pages html.
Map mapping:
Chapter 009Lecture:
Flowing effect:
is introduced later with
div+css
. The main reason is that the layout of html
only has
table
, which is relatively inflexible. The content of Htmlis basically finished here!
The above is an introduction to the content of Html, including aspects of content. I hope it will be helpful to friends who are interested in PHP tutorials.