-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path02tags-i-know.html
More file actions
27 lines (23 loc) · 907 Bytes
/
02tags-i-know.html
File metadata and controls
27 lines (23 loc) · 907 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Known Tags </title>
</head>
<body>
<h1>Tags that
<strong>
<abbr title="Known by Shirish ">I Know</abbr>
</strong>
<pre>
If you are using the HTML5 doctype or an HTML 4.01 doctype, you can use whatever style you want
If you are using an XHTML doctype, you need to use XML well-formed syntax
Whichever style you are using, best practice is to:
Close all open elements, so for example <p>paragraph</p>, not <p>paragraph
Nest them properly, for example <p>paragraph with bold <strong>word</strong></p>, not <p>paragraph with bold <strong>word</p></strong>
</pre>
</h1>
</body>
</html>