Tag:<
-
Master the difference between BR and P tags through examples
Use of newline marker < br >Line feed tag < br > is a tag with no end. As long as the < br > tag is used anywhere in the HTML file, when the file is displayed in the browser, the text after the location will be displayed on the next line, and the […]
-
Configuring Apache virtual host instance for Linux system
installapache,php: yum install httpd php Suppose the IP address of the VPS is 58.130.17.168, and there are two domain names pointing to the IP address, domain1.1 com, domain2. com, Modify / etc / httpd / conf / httpd Conf, add at the end of the file: ServerName 58.130.17.168 NameVirtualHost 58.130.17.168 <VirtualHost 58.130.17.168> ServerName domain1.com […]
-
Implementation skills of Web Music in Web Design
When inserting music into the web page, write different codes according to different suffixes! The following is the detailed use code of various format files.Note:“Music file and address” – the file name of the file to be played, preceded by the absolute path or the relative path of the site. width_ Num — specify a number […]
-
Introduction to XHTML common tags
For some time, I found that many people can’t use XHTML, not only ordinary beginners, but also some programmers don’t know how to write XHTML. Here, I can summarize some common application problems, which can also enable us to form a tacit understanding in communication and cooperation.There are many tags in XHTML, but there are […]
-
HTML web page picture tag
Insert picture marker < img >The colorful web pages we see today are all due to the role of images. When you think about the past, all the web pages in the network are plain text, which is very boring. You know the importance of images in web design. Images can be inserted into HTML […]
-
Five examples and skills of web form design
1. Mobile selection of form text input: if a prompt is added in the text input field, visitors often need to select it with the mouse, delete it, and then enter useful information. In fact, as long as you add OnMouseOver = “this. Focus()” onfocus = “this. Select()” code to < textarea >, everything will […]
-
HTML web page list markup tutorial
HTML web page list markup tutorialIn the HTML page, the list can play the role of outline writing. There are two types of lists: one is a sequential list, and the other is an unordered list. The former uses bullets to mark unordered items, while the latter uses numbers to record the order of items.The […]
-
HTML web page hyperlink tag
HTML web page hyperlink markup tutorialProperties of linked TagsLink is one of the most important elements in a web page and the soul of a website. A website is composed of multiple pages, and the navigation relationship between pages depends on links. Each web page has a unique address, which is called URL (uniform resource […]
-
HTML form markup tutorial (5): text field markup
This tag is used to make a multi line text field in which you can enter more text. Basic grammar Grammatical interpretationThe meanings of these attributes are shown in the following table Attribute value of text field tag describe name Insert a text field into the page.01 <!– —————————— –>02 <!– Example of document: 11-17 […]
-
HTML form markup tutorial (2):
This tutorial introduces the application of various attributes of form tags in web design Basic grammar Grammatical interpretationYou can control the relationship between the form and the daemon by naming the form.Insert a form into the page.01 <!– —————————— –>02 <!– Example of document: 11-1 htm –>03 <!– File Description: insert form — >04 <!– […]
-
HTML form markup tutorial (3): entering markup
HTML form markup tutorial. This section mainly explains how to use input markup in web pages, and mainly introduces the use of the attributes of input markupThe input tag < input > is one of the most commonly used tags in forms. Common text fields, buttons, etc. use this tag. Basic grammar Grammatical interpretationThe attributes […]