-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtesting.html
77 lines (77 loc) · 1.91 KB
/
testing.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/testingstyle.css" >
<title>non of ur bysiness</title>
</head>
<body>
<fieldset>
<legend>paragraph</legend>
<h1>do </h1>
<div class="para">
<p>Lorem <strong>hero is here</strong> ipsum dolor <em>super villain</em> sit.</p>
<hr>
<p>first</p>
<p>second</p>
</div>
<div class="detail">
<p>third</p>
<p>last time <br> im letting u go</p>
<p>here is one more villain</p>
<p>sanjay</p>
</fieldset>
<br>
</div>
<!---control + enter-->
<br>
<fieldset>
<legend>details</legend>
<h1>DETAIL</h1>
<div class="name">
NAME:
<input type="text" name="fname" required>
<label for="fname" value="fname"></label>
</div>
<div class="gender">
GENDER:
<input type="radio" name="gender" value="male">
<label for="male">male</label><br>
<input type="radio" name="gender" value="female">
<label for="female">female</label><br>
<input type="radio" name="gender" value="others">
<label for="others">others</label><br>
<input type="submit" value="Submit" class="submit">
</fieldset>
<br>
</div class="table">
<table style="border: 1px solid black; border-collapse: collapse;">
<tr>
<th class="row" text type="italic">
<i>STD</i>
<i>ROLL NO</i>
</th>
</tr>
<tr>
<td>
12
20030
</td>
</tr>
<tr>
<td>
11
20009
</td>
</tr>
<tr>
<td>
01
20001
</td>
</tr>
</table>
</body>
</html>