Example
Example
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>Custom Data Attributes</title>
5
</head>
6
<body>
7
8
<h1>Course Catalog</h1>
9
<article
10
id="course101"
11
data-category="frontend"
12
data-lessons="101"
13
data-difficulty="beginner">
14
<h2>HTML5 Complete Guide</h2>
15
<p>Learn web markup from scratch.</p>
16
</article>
17
18
</body>
19
</html>
