mirror of
https://github.com/pabloquablo/RTA-test.git
synced 2026-03-06 03:06:35 +01:00
53 lines
3.4 KiB
HTML
53 lines
3.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- The title of the webpage -->
|
|
<title>My Simple Wikipedia</title>
|
|
<!-- Meta tag for character encoding -->
|
|
<meta charset="UTF-8">
|
|
<!-- Link to the external CSS file for styling -->
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<!-- Main heading of the webpage -->
|
|
<h1>Welcome to My Simple Wikipedia</h1>
|
|
|
|
<!-- Introduction paragraph -->
|
|
<p>This is a basic example of a simple Wikipedia-like page. It demonstrates how to structure information using HTML.</p>
|
|
|
|
<!-- Subheading for the first article -->
|
|
<h2>Article 1: The History of the Internet</h2>
|
|
<!-- Paragraphs containing information about the history of the Internet -->
|
|
<p>The Internet began as a project funded by the United States Department of Defense in the 1960s. Its initial purpose was to create a decentralized network that could withstand a nuclear attack.</p>
|
|
<p>Over time, the Internet evolved into the global network we know today, connecting billions of devices and people worldwide.</p>
|
|
|
|
<!-- Subheading for the second article -->
|
|
<h2>Article 2: The Life Cycle of a Butterfly</h2>
|
|
<!-- Paragraphs containing information about the life cycle of a butterfly -->
|
|
<p>Butterflies undergo a fascinating transformation known as metamorphosis. It begins with an egg, which hatches into a larva (caterpillar).</p>
|
|
<p>The larva grows and molts several times, eventually forming a chrysalis. Inside the chrysalis, the larva undergoes a remarkable transformation, emerging as a beautiful butterfly.</p>
|
|
|
|
<!-- Subheading for the third article -->
|
|
<h2>Article 3: The Solar System</h2>
|
|
<!-- Paragraphs containing information about the solar system -->
|
|
<p>The Solar System consists of the Sun and the objects that orbit it, including eight planets, their moons, and other celestial bodies such as asteroids and comets.</p>
|
|
<p>It formed approximately 4.6 billion years ago from the gravitational collapse of a giant molecular cloud.</p>
|
|
|
|
<!-- Subheading for the fourth article -->
|
|
<h2>Article 4: The Human Brain</h2>
|
|
<!-- Paragraphs containing information about the human brain -->
|
|
<p>The human brain is the central organ of the human nervous system, and with the spinal cord makes up the central nervous system. The brain consists of the cerebrum, the brainstem, and the cerebellum.</p>
|
|
<p>It controls most of the activities of the body, processing, integrating, and coordinating the information it receives from the sense organs, and making decisions as to the instructions sent to the rest of the body.</p>
|
|
|
|
<!-- Subheading for the fifth article -->
|
|
<h2>Article 5: The Great Wall of China</h2>
|
|
<!-- Paragraphs containing information about the Great Wall of China -->
|
|
<p>The Great Wall of China is a series of fortifications that were built across the historical northern borders of China to protect and consolidate territories of Chinese states and empires against various nomadic groups of the steppe and their polities.</p>
|
|
<p>Several walls were being built as early as the 7th century BC; these, later joined together and made bigger and stronger, are now collectively referred to as the Great Wall.</p>
|
|
</div>
|
|
|
|
<!-- Link to the external JavaScript file for functionality -->
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |