All html tags
comments in html <!---Commments--->
1.<html>
2.<nav>
2.<head>
3.<hr> stands for horizantel line
4.<titel>
5.<code>
6.<cite>
7.<center>
7.<var>
9.<kbd>
10.<pre>
11.<p>
12.<meta>
13.<mark>
14.<footer>
15.<font color="" size="">
16.<div>
17.<del>
22.<s>
18.<style>
19.<sub>
20.<sup>
21.<span>
22.<small>
23.<strong>
23.<section>
23.<abbr title="">
24.<address>
25.<text align="center/left/right"><text>
26.<i> <em> <ul>
27.<b> <big> <br>
28.<q>
30.lists
31.<ul type="circle/none/square/disc/bulltes">
<li></li>
</ul>
<ol type="1/A/a/I/i'' start="num/abc/roman">
<li> </li>
</ol>
<dl>
<dt></dt>
<dd></dd>
</dl>
24.<img src="" width="" height="" alt="" title="">
25.<audio controls/autoplay><source src=".mp3" type="audio/mp3"></audio>
26.<video controls/autoplay muted loop><source src=".mp4" type="video/mp4"></video>
27.<marqee scrollamount="" direction="up/down/right/left" onmouseover="this.stop()" onmouseleave="this.start()"</marqee>
28.<table border="" cellpadding="" cellspacing="">
<tr>
<th colspan="">header</th>
</tr>
<tr>
<td rowspan="">data</td>
</tr>
</table>
39.<a href="" target="_blank/_self"></a>
30.<fieldset>
<legend> </legend>
<form action="#" onsubmit="#" method="post/get" >
<label></label>
<input type="text">
<input type="text" placeholder="enter the number" />
<input type="text" required />
<input type="text" autofocus />
//auto complete is used to complete or not to complete the words//
<input type="text" autocomplete="on/off" />
<input type="checkbox" name="" id="" />
<input type="number" />
<input type="color" />
<input type="date" />
<input type="time" />
<input type="datetime-local" />
<input type="text" name="name" id="name" />
<input type="password" name="" value=""><br>
<input type="email" name="" value="">
Select Your gender :<input type="radio" name="gender">Male <input type="radio" name="gender">Female
<input type="button" name="btn" id="btn" value="login" />
<input type="button" name="file" id="file" />
<input type="hidden" />
<input type="image" scr="" width="" height="" />
<input type="file" multiple />
<input type="month" />
0 <input type="range" /> 100
<input type="hidden" />
<input type="reset" value="reset" />
<input type="search" />
<input type="submit" value="submit" />
<input type="tel" />
<input type="url" />
<input type="week" />
<input type="text" disabled />
<input type="text" size />
<input type="text" readonly />
<input type="number" max="2345" />
<input type="number" min="2334453" />
<input type="text" maxlength="8" />
<textarea cols="" rows=""></textarea>
<!-- for making drop down list we use this select tag datalist-->
<select>
<option></option>
<option></option>
<option></option>
</select>
<input list="browsers" />
<datalist>
<option></option>
<option></option>
<option></option>
<option></option>
</datalist
<button></button>
</form>
</fieldset>
links in html
first
<a herf="">
second
for example you wants to go end of the website by link
<a herf="#end point">
<h1 id="end point"> end point </h1>
html entites
© used for copy right used for space
< > £ you can also search html entitesin googel
0 Comments