-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAq8.html
More file actions
32 lines (25 loc) · 791 Bytes
/
Aq8.html
File metadata and controls
32 lines (25 loc) · 791 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
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Glossary Page</title>
</head>
<body>
<h1>Glossary</h1>
<dl>
<dt>HTML</dt>
<dd>Standard language for creating web pages.</dd>
<dt>CSS</dt>
<dd>Style sheet language for web page design.</dd>
<dt>JavaScript</dt>
<dd>Programming language for interactive web content.</dd>
<dt>Algorithm</dt>
<dd>Step-by-step process for solving a problem.</dd>
<dt>Data Structure</dt>
<dd>Organization of data for efficient use.</dd>
<dt>Machine Learning</dt>
<dd>Algorithms that learn from data to make predictions.</dd>
</dl>
</body>
</html>