-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
52 lines (48 loc) · 1.61 KB
/
test.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
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>test web</title>
</head>
<body>
<table>
<tr>
<th>name</th>
<th>class</th>
<th>matricle</th>
</tr>
<tr>
<td>fopah princely</td>
<td>COME LEVEL 300</td>
<td>UBa23E0240</td>
</tr>
<tr>
<td>fopah princely DE LA SAP</td>
<td>COME LEVEL 300</td>
<td>UBa23E024RICHARD</td>
</tr>
</table>
<dl>
<dt>fops</dt>
<dd>my name is Fopah Princely</dd>
</dl>
<div class="fops" style="background-color: orange;">
<h1>i am a developer</h1>
<b>this is bold</b>
</div>
<iframe src="https://google.com" frameborder="0" style="padding-top: 30px;"></iframe>
<form action="fops.html>
<label for="NAME" id="NAME">NAME</label><br>
<input type="text"><br>
<label for="time" id="time">time</label><br>
<input type="time"><br>
<label for="datetime" id="datetime">datetime</label><br>
<input type="date"><br>
<label for="email">email</label><br>
<input type="email"><br>
<input type="password"><br><br>
<label for="fops">fops</label>
<input type="checkbox" name="fops" id="fops" value="are you fops?s"><br><br>
<input type="submit" value="send">
</form>
</body>
</html>