Tutorials, Free Online Tutorials, publishbookmarks provides tutorials and interview questions of all technology like java tutorial, android, java frameworks, javascript, ajax, core java, sql, python, php, c language etc. for beginners and professionals.
Android 4.0.x Browser does not trigger the solution of the onTouchend event Zoewang
<!-Note writing-><!DOCTYPEhtml><!-Doctype tells the browser what specifications do we use-><htmllang="en"><!-Head represents the head of the webpage-><head><!-Meta descriptive label, it is used to describe some information on our website-><!-Meta is generally used for SEO-><metacharset="UTF-8"><metaname="keywords"charset="7 7 7 Java"><!-Keywords-><metaname="description"charset="Come here to learn Java"><!-Description-><!-Title represents the title of the webpage-><title>My first webpage</title></head><!-Body represents the main body of the webpage-><body>
Hello World!
</body></html>
<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><title>image label learning</title></head><body><!--
IMG tag learning:
SRC: Picture address
Relators (Recommended Relators), absolute address
../ -Represents the first -level catalog
Title = "Qianqian" Hanging Text
alt = "Qianqian photo" picture name (must be filled)
-><imgsrc="../resource/image/1.jpg"alt="Qianqian photo"title="Qianqian"width="500"height="600"><ahref="4. Link label .html# DOWN">jump</a></body></html>
<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><title>Link label learning</title></head><body><!-Use name as a mark-><aname="top">top</a><!--
A tag learning:
href = "" must be filled, indicating which page to jump to
target = "" means where the window is opened
_blank opened in the new label
_Self opens in your own webpage
-><ahref="1. My first webpage.html"target="_blank">Click me to jump to page one</a><ahref="https://www.baidu.com"target="_self">Click I jump to Baidu</a><br/><ahref="https://www.baidu.com"><imgsrc="../resource/image/1.jpg"alt="Qianqian photo"title="Qianqian"width="500"height="600"></a><p><ahref="https://www.baidu.com"><imgsrc="../resource/image/1.jpg"alt="Qianqian photo"title="Qianqian"width="500"height="600"></a></p><p><ahref="https://www.baidu.com"><imgsrc="../resource/image/1.jpg"alt="Qianqian photo"title="Qianqian"width="500"height="600"></a></p><p><ahref="https://www.baidu.com"><imgsrc="../resource/image/1.jpg"alt="Qianqian photo"title="Qianqian"width="500"height="600"></a></p><p><ahref="https://www.baidu.com"><imgsrc="../resource/image/1.jpg"alt="Qianqian photo"title="Qianqian"width="500"height="600"></a></p><p><ahref="https://www.baidu.com"><imgsrc="../resource/image/1.jpg"alt="Qianqian photo"title="Qianqian"width="500"height="600"></a></p><!--
Anchor link:
1. Need an anchor mark
2. Jump to mark
-><ahref="#top">Back to the top</a><aname="down">down</a><!--
Functional connection:
1. Mail link: Mailto:
2.qq link: QQ promotion
-><ahref="mailto:[email protected]">Click to contact Brother Mao</a><atarget="_blank"href="http://wpa.qq.com/msgrd?v=3&uin=&site=qq&menu=yes"><imgborder="0"src="http://wpa.qq.com/pa?p=2::52"alt="Hello, add me to receive benefits"title="Hello, add me to receive benefits"/></a></body></html>
<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><title>List Learning</title></head><body><!-Order list-><ol><li>java</li><li>Python</li><li>html</li><li>css</li><li>MySQL</li></ol><hr><!-No series
Scope of application: navigation, sidebar ...
-><ul><li>java</li><li>Python</li><li>html</li><li>css</li><li>MySQL</li></ul><!-Customized list
DL: Tag
DT: List name
DD: List content
-><dl><dt>discipline</dt><dd>Java</dd><dd>go</dd><dd>python</dd><dd>PHP</dd><dd>Linux</dd><dt>Location</dt><dd>Xi'an</dd><dd>Beijing</dd><dd>Hubei</dd></dl></body></html>
<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><title>Media element learning</title></head><body><!-audio and video
SRC: Resource path
Controls: Control bar
AutoPlay: Automatic playback
-><videosrc="../resource/video/LeBron01.mp4"controlsautoplay></video><audiosrc="../resource/audio/sound.mp3"controlsautoplay></audio></body></html>
<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><title>Page structure analysis</title></head><body><header><h2>web header</h2></header><section><h2>webpage main body</h2></section><footer><h2>Webpage foot</h2></footer></body></html>
<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><title>Title</title></head><body><!- iFrame: Inner Union framework
src: Address "https://www.baidu.com"
W-H: width and height
-><iframesrc="https://www.baidu.com"frameborder="0"width="1000px"height="800px"></iframe><iframesrc=""name="hello"frameborder="0"width="800px"height="1000px"></iframe><ahref="https://www.sina.com.cn"target="hello">Click to jump</a><!--
<iframe src="//player.bilibili.com/player.html?aid=91909529&bvid=BV1Y7411K7zz&cid=311463534&page=1"
scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true">
</iframe>
-->
<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><title>Login Registration</title></head><body><h1>Register</h1><!-Form form
Action: The location submitted by the form can be a website or a request processing address
Method: Post, get, submission method
Get method submission: We can see the information we submit in the URL, not safe, efficient
POST method submission: security, transmission of large files
-><formaction="1. My first webpage.html"method="get"><!- Text input box: input type = "text"
Value = "Mao Ge is so handsome" default initial value
maxLength = "10" input the number of characters at most
size = "30" text box length
readonly read only
disabled banned cannot be submitted
hidden hidden
-><p>Name:<inputtype="text"name="username"value="Mao Brother is so handsome"maxlength="10"size="30"></p><!-Password box: input type = "password"-><p>Password:<inputtype="password"name="pwd"></p><!-Single-selected box label:
input type = "raadio"
Value: The value of the single -election box
Name: Represents a group
-><p>Gender:<inputtype="radio"value="boy"name="sex"/><inputtype="radio"value="girl"name="sex"/></p><!-Multi-choice box:
input type = "Checkbox"
Checked default selection
-><p>Hobbies:<inputtype="checkbox"value="sleep"name="hobby">Sleeping<inputtype="checkbox"value="play"name="hobby"checked>Playing<inputtype="checkbox"value="book"name="hobby">Reading<inputtype="checkbox"value="study"name="hobby">Learning</p><!-button
input type = "Button" ordinary button
input type = "Image" image button
input type = "submit" submission button
input type = "reset" reset button
-><p>button:<inputtype="button"name="btn1"value="Click to become longer"><inputtype="image"src="../resource/image/1.jpg"></p><!-Submit--><p><inputtype="submit"><!-submit submission--><inputtype="reset"value="Clear form"><!-Reset reset-></p><!-drop-down box, list box
Selected: The value selected by the default
-><p>List box<selectname="List name"><optionvalue="china">China</option><optionvalue="jsp"selected>Japan</option><optionvalue="us">The United States</option><optionvalue="uk">Britain</option></select></p><!-text domain
textarea name = "textarea" color = "50" rows = "10"
-><p>Feedback:<textareaname="textarea"cols="50"rows="10">Text content</textarea></p><!-File domain
input type = "FILE"
-><p><inputtype="file"name="files"><inputtype="button"value="Upload"name="upload"></p><!-Email verification-><p>mailbox:<inputtype="email"name="email"></p><!--URL--><p>URL
<inputtype="url"name="url"></p><!-Digital-><p>Numbers:<inputtype="number"name="num"max="100"min="0"step="10"></p><!-slider
input type = "range" name = "voice" min = "0" max = "100" step = "2"
-><p>Volume<inputtype="range"name="voice"min="0"max="100"step="2"></p><!-Search box-><p>Search:<inputtype="search"name="search"></p><!-Enhanced mouse availability-><p><labelfor="mark">You order me to try</label><inputtype="text"id="mark"></p><!-
readonly read only
disabled banned cannot be submitted
hidden hidden
Placeholder = "Please enter the name" prompt information (for input box)
required non -empty (not empty)
Pattern regular expression (search)
-></form></body></html>