I. PS learning
Some people may find this strange. I learned how to create web pages and how to use ps (short for photoshop! I am not going to advertise either. This is short of your knowledge. When we create a website for our customers, we first need to give the customer an effect chart, which is completed through ps. The code can be written only when the customer or you are satisfied.
II. html tag learning
Since I am running a QQ group, I am often asked what html is? HTML refers to Hyper Text Markup Language. It is not a programming Language, but a Markup Language. In fact, a website consists of html tags. Simply put, a webpage consists of html tags. Html is the most basic knowledge of website construction.
3. TAG Learning
In fact, here is what we really need to learn about website construction. HTML tags are keywords surrounded by angle brackets, such as
Let's take a look at the most common code:
1. Use of div
Div is a block-level element. You can define partitions in the query. Tags can divide the document into independent and different parts. It can be used as a strict organization tool without any format associated with it. It appears in pairs, as shown in <div> I am a block-level element </div>
2. Use of p labels
The p tag is a paragraph tag and is also one of the commonly used labels in webpage creation. For example, <p> This is a piece of text </p>
3. a tag
<A> a hyperlink tag is used to link a page to another page. Its main attribute is href, such
<A href = "http://www.piaolingseo.com"> Shijiazhuang seo </a>
4. h tag
The h tag is divided into
5. img image tag
The img element is to embed an image into a webpage, for example,
6. B, em, and strong labels
Both of these are bold labels, which are used in the same way. In HTML5 specifications, B labels should be used as the final option only when no other suitable labels are more appropriate. HTML5 specification declaration: h1-h6 should be used to represent the title, em labels should be used to represent the emphasized text, and strong labels should be used to represent the important text. This is the difference between B labels and strong labels.
7. ul tag
Ul is a label of the unordered list, and it is used with li at the same time. For example, the news list we see on the webpage is to apply this label, for example
<Ul>
<Li> list </li>
</Ul>
8. If you want to learn more advanced, you need to learn server scripts such as php and mysql.