Share a super comprehensive summary of HTML and CSS knowledge points

Y2J
Release: 2017-05-22 10:18:43
Original
1845 people have browsed it

1, html+css basics
1-1
The relationship between Html and CSS
Learning the basic technologies of web front-end development requires mastering: HTML, CSS, and JavaScript languages. Let's take a look at what these three technologies are used to achieve:
1. HTML is the carrier of web content. Content is the information that web page creators put on the page for users to browse, and can include text, pictures, videos, etc.
2. CSS style is performance. It's like a coat for a web page. For example, title font, color changes, or adding background images, borders, etc. to the title. All these things used to change the appearance of content are called presentations.
3. JavaScript is used to implement special effects on web pages. For example: thedrop-down menupops up when the mouse slides over it. Or the background color oftablechanges when the mouse slides over it. There is also a rotation of hot news (news pictures). It can be understood that those withanimationand those with interaction are generally implemented using JavaScript.
1-2
1,HTML tagis not case sensitive,

and

are the same, but lowercase is recommended because most programmers use lowercase as allow.

1-3
An HTML file has its own fixed structure.

 ...
 ... 
Copy after login

Code explanation:
1.is called the root tag, and all web page tags are in.
2. Thetag is used to define the head of the document, which is a container for all head elements. Header elements include,

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template

About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!