-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractical-3.html
More file actions
29 lines (26 loc) · 1.18 KB
/
Copy pathpractical-3.html
File metadata and controls
29 lines (26 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practical-3</title>
</head>
<body>
<h2 style="color: brown;">Practical-3: Create a web page showing basic structure html structure using character Entities and span Tag</h2>
<h2>Output</h2>
<pre>
<!DOCTYPE <span style="color: rgb(212, 35, 35);">html</span> >
<html <span style="color: rgb(212, 35, 35);">lang</span>=<span style="color: cornflowerblue;">"en"</span>>
<head>
<meta <span style="color: rgb(212, 35, 35);">charset</span>=<span style="color: cornflowerblue;">"UTF-8"</span>>
<meta <span style="color: rgb(212, 35, 35);">name</span>=<span style="color: cornflowerblue;">"viewport"</span> <span style="color: rgb(212, 35, 35);">content</span>=<span style="color: cornflowerblue;">"width=device-width, initial-scale=1.0"</span>>
<title>Document</title>
</head>
<body><prev>
<span style="color: grey;"><!--This is Html comment--></span>
Write your content here...
</body>
</html>
</pre>
</body>
</html>