This commit is contained in:
vista-man
2025-01-25 21:45:48 +01:00
parent ab5e9fee9d
commit 0705b143c6
3 changed files with 37 additions and 23 deletions

View File

@@ -1,19 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<!-- The title of the webpage -->
<title>My Simple Wikipedia</title>
<!-- 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>
@@ -21,8 +27,10 @@
<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>
@@ -31,6 +39,7 @@
emerging as a beautiful butterfly.</p>
</div>
<!-- Link to the external JavaScript file for functionality -->
<script src="script.js"></script>
</body>
</html>