start . me .
Directory path . web , practice , 1-starting .

HTML Document File : 1-parts.html

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title> 1 - Page Parts (introductory infos) </title>
    <link rel="stylesheet" href="/sitewide.css"><script src="/web/dhtml/color-theme/colors.js"></script>
</head>

<body>

    <h1> 1 - Page Parts (introductory infos) </h1>

    <div><a href="."> go to main page. </a></div>

    <br>

    <div>the whole system is the web page or web app.</div>
    <div>
        parts: (symbolism of an automaton, humanoid android)
        <ul>
            <li>html is the support for the content, and the supported content, symbolized as the supporting skeleton,
                and supported flesh. support and content.</li>
            <li>css is the external appearance symbolized as the skin, and dressing.</li>
            <li>js is the internal script symbolized as automaton intelligence, automaton mind, internal.</li>
        </ul>
        these are the changing parts of the underneath software system, called web browser, that browses web pages.
    </div>

    <br>

    <div>every html page has a structure, like having a title and a content.</div>
    <div>every html page has a publishing address to refer to it in links.</div>
    <div>every link to a page refers to the page by publishing address and shows a text that can be the title of such
        linked page. or other contents. </div>

    <br>

    <div>Tipically, especially for more traditional pages, the content is written by a writer that has something to
        share to the Internet, the graphicians make it readable and pretty, the scripters make the functionality work,
        like handling some input from user.</div>
    <div>In the web apps, instead, as the evolution of such possibilities, tipically the efforts are for the
        functionalities of the application/software. The content is often provided by users.</div>

    <br>
    <hr>
    <br>

    <script src="/web/show-source.js"></script>

</body>

</html>