Build A Technical Documentation Page
Build A Technical Documentation Page
<!DOCTYPE html>
<html lang="en">
<head>
<title>Technical Page</title>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main id="main-doc">
<section class="main-section" id="technical_Documentation">
<header>
<h2>technical Documentation</h2>
</header>
<p>
JavaScript is a cross-platform, object-oriented scripting language. It is a small
and lightweight language. Inside a host environment (for example, a web browser),
JavaScript can be connected to the objects of its environment to provide
programmatic control over them.</p>
<p>
JavaScript contains a standard library of objects, such as Array, Date, and Math,
and a core set of language elements such as operators, control structures, and
statements. Core JavaScript can be extended for a variety of purposes by
supplementing it with additional objects; for example:
<li>Client-side JavaScript extends the core language by supplying objects to
control a browser and its Document Object Model (DOM)</li>
<li>Server-side JavaScript extends the core language by supplying objects relevant
to running JavaScript on a server.</li></p>
</section>
<section class="main-section" id="Content_one">
<header>
<nav id="navbar">
<h2>
Content one
</h2>
</nav>
</header>
<p>
This guide assumes you have the following basic background:</p>
<li>A general understanding of the Internet and the World Wide Web (WWW).</li>
<li>
Good working knowledge of HyperText Markup Language (HTML) e.g
</li>
<p> <code>href=""</code></p>
<p>and</p>
<p><code>img src=""</code></p>
<li>
Some programming experience. If you are new to programming, try one of the
tutorials linked on the main page about JavaScript.
</li>
</section>
<section class="main-section" id="Hello_World">
<header>
<h2>
Hello World
</h2></header>
<p> To get started with writing JavaScript, open the Scratchpad and write your
first "Hello world" JavaScript code: </p>
<p><code>
function greetMe(yourName) { alert("Hello " + yourName); }
greetMe("World");
</code></p>
</section>
<section class="main-section" id="Declaring_Variables">
<header>
<h2>
Declaring Variables
</h2></header>
<p>
You can declare a variable in three ways:
** end of undefined **
** start of undefined **
}
** end of undefined **