-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwt1.html
More file actions
120 lines (80 loc) · 1.62 KB
/
wt1.html
File metadata and controls
120 lines (80 loc) · 1.62 KB
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
<html>
<head>
<title>WebTech-1</title>
</head>
<body bgcolor="gray">
<p>This is a paragraph. And, we are using paragraph tag here. This tag helps us to write text in the form of a paragraph(With proper spaces) </p>
<b>We are using bold tag to make the text bold.</b>
<br>
<i>We are using bold tag to make the text italics.</i>
<br>
<h1> This is heading tag H1</h1>
<br>
<h2> This is heading tag H2</h2>
<br>
<h3> This is heading tag H3</h3>
<br>
<h4> This is heading tag H4</h4>
<br>
<h5> This is heading tag H5</h5>
<br>
<h6> This is heading tag H6</h>
<br>
<font size=2>
<center> Center tag is used to display text at the center of the page.</center>
<br>
(We used br tag to jump to the new line.)
<br>
Now, we are going to create a table:
<br>
<table>
<tr>
<th>Roll_no</th>
<th>Name</th>
</tr>
<tr>
<td>201</td>
<td>Prajakta</td>
</tr>
<tr>
<td>202</td>
<td>Omkar</td>
</tr>
<tr>
<td>203</td>
<td>XYZ</td>
</tr>
</table>
<br>
Now, we are inserting an image:
<br>
<img src="/home/rutuja/Desktop/WT/back.jpeg" alt="Alternate text">
<br>
We are now going to create a hyperlink.For that purpose, we are using anchor tag.
<br>
<a href="https://www.google.com">Click here</a>
<br>
If you want to open another html file saved on your system, then also anchor tag is used.
<br>
<a href="/home/rutuja/Desktop/WT/an.html">Another HTML file</a>
<br>
To create an ordered list, OL tag is used.
<br>
<ol>
<li>Item1</li>
<li>Item2</li>
<li>Item3</li>
<li>Item4</li>
</ol>
<br>
To create an unordered list, UL tag is used.
<br>
<ul>
<li>Item1</li>
<li>Item2</li>
<li>Item3</li>
<li>Item4</li>
</ul>
</font>
</body>
</html>