-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtechnicaldoc.html
More file actions
33 lines (33 loc) · 1.04 KB
/
technicaldoc.html
File metadata and controls
33 lines (33 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Technical Documentation</title>
<style>
.center_text{
text-align: center;
}
</style>
</head>
<body>
<header class="center_text">
<h1>Technical Documentation</h1>
<ol>
<li><a href="https://www.google.com/">Introduction</a></li>
<li><a href="https://www.google.com/">Syntax</a></li>
<li><a href="https://www.google.com/">Variable</a></li>
<li><a href="https://www.google.com/">Functions</a></li>
</ol>
</header>
<div>
<h3>Introduction</h3>
<p>JavaScript is a high-level, interpreted scripting language...
</p>
<h3>Syntax</h3>
<p>JavaScript syntax is the set of rules, how JavaScript programs are constructed...</p>
<h3>Variables</h3>
<p>In JavaScript, a variable can be declared using 'var', 'let', or 'const'...</p>
</div>
</body>
</html>