-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (48 loc) · 1.49 KB
/
Copy pathindex.html
File metadata and controls
51 lines (48 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
</head>
<body>
<h1> First Project </h1>
<p> this is a paragraph </p>
<div> this is a block without semantic meaning </div>
<lzz> this is customized tag lzz </lzz>
哈哈哈
<br>
<a href="http://techbow.com" target="_blank"> absolute techbow.com </a>
<br>
<a href="test.html"> relative test </a>
<br>
<a href="mailto:liuzizuo@gmail.com"> mail zizuo </a>
<br>
<a href="mailto:liuzizuo@gmail.com?Subject=You Are Hired"> mail zizuo with subject</a>
<br>
<a href="mailto:liuzizuo@gmail.com?Subject=You Are Hired&Body=Congratulations 你被录用了"> mail zizuo with subject</a>
<!-- div> this is comment </div-->
<br>
<a href="tel:+1911"> call zizuo </a>
<br>
<a href="skype:zizuoliu"> skype zizuo </a>
<br>
<a href="#anchor"> anchor </a>
<br>
<br>
<form action="123" method="post">
text <input type="text" required><br>
password <input type="password" autofocus><br>
date <input type="date"><br>
datetime <input type="datetime"><br>
datetime-local <input type="datetime-local"><br>
email <input type="email"><br>
month <input type="month"><br>
number <input type="number"><br>
range <input type="range"><br>
zipcode <input type="search" pattern="[0-9]{5}" required maxlength="5"><br>
tel <input type="tel" placeholder="please enter your phone"><br>
color <input type="color"><br>
url <input type="url" value="techbow.com"><br>
<input type="submit" value="Submit">
</form>
</body>
</html>