Build-a-technical-documentation-page-project

I get this error in this step

  • You should have at least five code elements that are descendants of .main-section elements.

Your code so far

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

<!DOCTYPE HTML>
<html>
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Build a Technical Documentation Page</title>
    <link rel="stylesheet" href="styles.css">
  </head>
  <body>
  <div class="wrap">
    <nav id="navbar">
      <header>Technical Documentat</header>
      <ul>
        <li>
          <a class="nav-link" href="#Introduction">Introduction</a>
        </li>
        <li>
          <a class="nav-link" href="#What_you_should_already_know">What you should already know</a>
        </li>
        <li>
          <a class="nav-link" href="#JavaScript_and_Java">JavaScript and Java</a>
        </li>
        <li>
          <a class="nav-link" href="#Hello_world">Hello world</a>
        </li>
        <li>
          <a class="nav-link" href="#Data_types">Data types</a>
        </li>
        <li>
          <a class="nav-link" href="#Function_declarations">Function declarations</a>
        </li>
      </ul>
    </nav>
    <main id="main-doc">
      <section class="main-section" id="Introduction">
        <header>Introduction</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;</p>
       <h3>for example:</h3>
        <ol>
            <li>Client-side JavaScript extends the core language by supplying objects to control a browser and its Document Object Model (DOM). For example, client-side extensions allow an application to place elements on an HTML form and respond to user events such as mouse clicks, form input, and page navigation.</li>
            <li>Server-side JavaScript extends the core language by supplying objects relevant to running JavaScript on a server. For example, server-side extensions allow an application to communicate with a database, provide continuity of information from one invocation to another of the application, or perform file manipulations on a server.</li>
          </ol>

      </section>
      <section class="main-section" id="What_you_should_already_know">
        <header>What you should already know</header>
        <p>This guide assumes you have the following basic background:</p>
        <label>basic background:</label>
        <ol>
        <li>A general understanding of the Internet and the World Wide Web (WWW).</li>
            <li>Good working knowledge of HyperText Markup Language (HTML).</li>
            <li>Some programming experience. If you are new to programming, try one of the tutorials linked on the main page about JavaScript.</li>
          </ol>
          <h3>Start your career journey with the 5 Day Coding Challenge, learn the basics of HTML, CSS & JavaScript to discover if coding is the career path for you.</h3>

      </section>
      <section class="main-section" id="JavaScript_and_Java">
        <header>JavaScript and Java</header>
        <h3>JavaScript and Java</h3>
        <p> are similar in some ways but fundamentally different in some others. The JavaScript language resembles Java but does not have Java's static typing and strong type checking. JavaScript follows most Java expression syntax, naming conventions and basic control-flow constructs which was the reason why it was renamed from LiveScript to JavaScript.</p>
        <p>In contrast to Java's compile-time system of classes built by declarations, JavaScript supports a runtime system based on a small number of data types representing numeric, Boolean, and string values. JavaScript has a prototype-based object model instead of the more common class-based object model. The prototype-based model provides dynamic inheritance; that is, what is inherited can vary for individual objects. JavaScript also supports functions without any special declarative requirements. Functions can be properties of objects, executing as loosely typed methods.</p>
      <p>JavaScript is a very free-form language compared to Java. You do not have to declare all variables, classes, and methods. You do not have to be concerned with whether methods are public, private, or protected, and you do not have to implement interfaces. Variables, parameters, and function return types are not explicitly typed.</p>
      </section>
      <section class="main-section" id="Hello_world">
        <header>Hello world</header>
        <p>To get started with writing JavaScript, open the Scratchpad and write your first "Hello world" </p>
        <h4>JavaScript code:</h4>
       <code>function greetMe(yourName) { alert("Hello " + yourName); }
greetMe("World");</code>
       <p>Select the code in the pad and hit Ctrl+R to watch it unfold in your browser!</p>
      </section>
      <section class="main-section" id="Data_types">
        <header>Data types</header>
        <p>The latest ECMAScript standard defines seven </p>
        <h3>data types:</h3>
        <ol>
            <li>Six data types that are primitives:
             <ol>
                <li>Boolean. true and false.</li>
                <li>null. A special keyword denoting a null value. Because JavaScript is case-sensitive, null is not the same as Null, NULL, or any other variant.</li>
                <li>undefined. A top-level property whose value is undefined.</li>
                <li>Number. 42 or 3.14159.</li>
                <li>String. "Howdy"</li>
                <li>Symbol (new in ECMAScript 2015). A data type whose instances are unique and immutable.</li>
              </ol>
            </li>
            <li>and Object</li>
          <p>Although these data types are a relatively small amount, they enable you to perform useful functions with your applications. Objects and functions are the other fundamental elements in the language. You can think of objects as named containers for values, and functions as procedures that your application can perform.</p>
          </ol>
      </section>
      
      <section class="main-section" id="Function_declarations">
        <header>Function declarations</header>
        <p> A function definition (also called a function declaration, or function statement) consists of the function keyword</p>
        <h3> followed by:</h3>
        <ol>
            <li>The name of the function.</li>
            <li>A list of arguments to the function, enclosed in parentheses and separated by commas.</li>
            <li>The JavaScript statements that define the function, enclosed in curly brackets, { }.</li>
        </ol>
        <p>For example, the following code defines a simple function named square:</p>
        <code>function square(number) { return number * number; }</code>
       <p>The function square takes one argument, called number. The function consists of one statement that says to return the argument of the function (that is, number) multiplied by itself. The return statement specifies the value returned by the function.</p>
       <code>return number * number;</code>
       
      </section>

    </main>
  </div>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Build a Technical Documentation Page

Link to the challenge:

You seem to only have three <code> elements

1 Like

Thank you :smiling_face: for helping.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.