-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelements.html
50 lines (48 loc) · 1.06 KB
/
elements.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
<html>
<head>
<title>uses of HTML elements</title>
</head>
<h1 align="center" style="color:rgb(167, 55, 74)" > HTML elements</h1>
</head>
<style>
table{
font-family: 'Courier New', Courier, monospace;
font-size:large;
font-weight: 100;
color: rebeccapurple;
}
</style>
<center>
<table border="6" cellspacing="1" cellpadding="20">
<tr>
<th>elements</th>
<th>meaning</th>
</th>
</tr>
<tr>
<td>h1,h2,..h6</td>
<td>heading tags</td>
</tr>
<tr>
<td>b</td>
<td>make content bold</td>
</tr>
<tr>
<td>ol</td>
<td>orderdlist </td>
</tr>
<tr>
<td>ul</td>
<td>unoredrd list</td>
</tr>
<tr>
<td>p</td>
<td>paragraph</td>
</tr>
<tr>
<td>table</td>
<td>create table</td>
</tr>
</table>
</center>
</html>