-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
68 lines (64 loc) · 2.57 KB
/
index.php
File metadata and controls
68 lines (64 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<?php include "components/head.php" ?>
<link rel="stylesheet" href="css/styles.css">
<title>How Computers Work</title>
</head>
<body>
<header>
<h1>Welcome to How Computers Work</h1>
</header>
<nav>
<ul class="navbar">
<li><a href="pages/hardware.php">Computer Hardware</a></li>
<li><a href="pages/system-software.php">System Software</a></li>
<li><a href="pages/application-software.php">Application Software</a></li>
</ul>
</nav>
<main>
<section>
<h2>About This Project</h2>
<p>
Welcome to my project, "How Computers Work." I'm Radovan Mihalik, and my mission is to make technology
accessible and understandable for everyone, especially young learners. This website is dedicated to
explaining the fascinating world of computers in simple terms, designed to help students in the MYP 1/2/3
age group (around 12 to 14 years old) grasp the basics.
</p>
<p>
Through interactive lessons, informative articles, and engaging quizzes, I aim to demystify computer
hardware and software, helping students build a solid foundation for their digital journey.
</p>
</section>
<section>
<h2>What You'll Learn</h2>
<p>
In "How Computers Work," you'll explore a wide range of topics related to computer technology, including:
</p>
<ul>
<li>Understanding the key components of a computer</li>
<li>Exploring how software and hardware work together</li>
<li>Learning the basics of programming and coding</li>
<li>Discovering the role of computers in our daily lives</li>
<li>Engaging with fun quizzes to test your knowledge</li>
</ul>
</section>
<section>
<h2>Get Started</h2>
<p>
Ready to begin your journey into the world of computers? Start exploring our lessons and articles to gain a
better understanding of computer hardware, software, and programming. When you're ready to test your
knowledge, take our interactive quizzes by clicking the "Start Quiz" button below.
</p>
<p>
Whether you're a curious student or simply interested in learning how computers work, you'll find valuable
resources and interactive content here.
</p>
<a href="pages/hardware.php" class="button">Start</a>
</section>
</main>
<footer>
<p>© <?php echo date("Y"); ?> Radovan Mihalik</p>
</footer>
</body>
</html>