-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbasic.html
42 lines (40 loc) · 870 Bytes
/
basic.html
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
<html>
<head>
<title>Document name goes here</title>
<style>
p{
font-size:19px;
}
#pp{
font-size:30px;
}
.pp{
font-size:5px;
}
span[kk="sidu"]{
color:red;
}
</style>
</head>
<body>
<form action="http://www.example.com/test.asp" method="post/get">
<input type="text" name="lastname"
value="Nixon" size="30" maxlength="50">
<input type="password">
<input type="checkbox" checked="checked">
<input type="radio" checked="checked">
<input type="submit">
<input type="reset">
<input type="hidden">
<select>
<option>Apples
<option selected>Bananas
<option>Cherries
</select>
<textarea name="Comment" rows="10"
cols="10"></textarea>
</form>
<p class="pp" pu="sd">ni<span>wo</span></p>
<span kk="sidu">sdoi</span>
</body>
</html>