-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathPractice.html
132 lines (120 loc) · 4.69 KB
/
Practice.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<pre>
<p><font color="#0000FF" size="7" face="Comic Sans MS, cursive">My Name is Sanchit Singhal....</font></p>
</pre>
<a href="14731357_1247003895342013_2774713443282415829_n.jpg"/></a>
<img src="14731357_1247003895342013_2774713443282415829_n.jpg" width="50%" height="400px"/>
<!-- HTML LIST -->
<ol start="5" type="a">
<li>Samsung</li>
<li>Apple</li>
<li>RedMi</li>
<li>Oppo</li>
<li>HTC</li>
</ol>
<ul type="square">
<li>Samsung</li>
<li>Apple</li>
<li>RedMi</li>
<li>Oppo</li>
<li>HTC</li>
</ul>
<!-- DEFINITION LIST -->
<dl>
<dt>Hellon Samsung...</dt>
<dd>Samsung</dd>
<dt>Hello Apple...</dt>
<dd>Apple</dd>
<dt>Hello MI...</dt>
<dd>RedMi</dd>
<dt>Hello Oppo...</dt>
<dd>Oppo</dd>
<dt>Hello HTC...</dt>
<dd>HTC</dd>
</dl>
<table border="3" bgcolor="#FFFF00" width="50%" align="right" bordercolor="#000000">
<tr>
<td colspan="3"><img src="iact.png" width="650" height="100"/></td>
</tr>
<tr bgcolor="#00FF00">
<th><font color="#0000FF">Name</font></th>
<th><font color="#0000FF">Contact</font></th>
<th><font color="#0000FF">Course</font></th>
</tr>
<tr>
<td>SANCHIT SINGHAL</td>
<td rowspan="5" align="center" bgcolor="#00FFFF"><font color="#000099">9457717393</font></td>
<td>BTech</td>
</tr>
<tr>
<td>SANCHIT SINGHAL</td>
<td>BTech</td>
</tr>
<tr>
<td>SANCHIT SINGHAL</td>
<td>BTech</td>
</tr>
<tr>
<td>SANCHIT SINGHAL</td>
<td>BTech</td>
</tr>
<tr>
<td>SANCHIT SINGHAL</td>
<td>BTech</td>
</tr>
</table>
<form action="link.html">
<p> <label for="a"><b>Enter User Name :</b></label>
<input type="text" id="a"/>
</p>
<p> <label for="b"><b>Enter Password :</b></label>
<input type="password" id="b"/>
</p>
<p>
<label><b>Courses :</b></label>
<input type="checkbox" id="c"/>
<label for="c">Btech</label>
<input type="checkbox" id="cc"/>
<label for="cc">Mtech</label>
<input type="checkbox" id="ccc"/>
<label for="ccc">BBA</label>
<input type="checkbox" id="cccc"/>
<label for="cccc">B.Sc.</label>
</p>
<label><b>Gender :</b></label>
<input type="radio" name="g" />Male
<input type="radio" name="g" />Female
<br />
<br />
<label><b>Select Courses :</b></label>
<select>
<optgroup label="Science">
<option>BSc.</option>
<option>MSc.</option>
<option>BTech</option>
<option>MTech</option>
</optgroup>
<optgroup label="Commerce">
<option>BBA</option>
<option>MBA</option>
<option>BCA</option>
<option>MCA</option>
</optgroup>
<p>
<label>Enter Comments</label>
<textarea rows="10" cols="15"></textarea>
</p>
<input type="button" value="Click Me" />
<input type="submit" value="Submit" />
<input type="reset" value="Reset" />
</form>
<h1>Sanchit Singhal BTech CSE 3rd Semester</h1>
<p style="font-size:35px;color:#F36;font:'Comic Sans MS', cursive;line-height:50px;word-spacing:50px;text-indent:200px">Hello my name is Sanchit Singhal.I am from ABESEC Ghaziabad.</p>
</body>
</html>