english-easy/reading.html
2026-06-19 05:59:21 +00:00

103 lines
3.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Reading — English Easy</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="header-inner">
<a href="index.html" class="logo">English <span>Easy</span></a>
<button class="menu-toggle" aria-label="Menu"></button>
<nav>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="vocabulary.html">Vocabulary</a></li>
<li><a href="grammar.html">Grammar</a></li>
<li><a href="exercises.html">Exercises</a></li>
<li><a href="tests.html">Tests</a></li>
<li><a href="reading.html">Reading</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="page-header">
<div class="container">
<h1>Reading</h1>
<p>Read short texts in English and check your understanding.</p>
</div>
</section>
<section class="section">
<div class="container">
<!-- Text 1 -->
<div class="reading-text">
<h3>My Daily Routine</h3>
<div class="text-content">
<p>My name is Anna. I am a student. I wake up at 7 o'clock every day. I have breakfast at 7:30. I go to school at 8 o'clock. I have lunch at school. I come home at 3 o'clock. Then I do my homework. In the evening, I read books or watch TV. I go to sleep at 10 o'clock.</p>
<p>I like English because it is interesting. I study English every day.</p>
</div>
<div class="questions">
<h4>Questions:</h4>
<ol>
<li>What is her name?</li>
<li>What time does she wake up?</li>
<li>Why does she like English?</li>
</ol>
</div>
</div>
<!-- Text 2 -->
<div class="reading-text">
<h3>My Family</h3>
<div class="text-content">
<p>Hi! I am Tom. I am 10 years old. I live with my family. There are four people in my family: my mother, my father, my sister, and me.</p>
<p>My mother is a teacher. She works at a school. My father is a doctor. He works in a hospital. My sister is 15 years old. She likes music and plays the guitar. I like football. We are a happy family.</p>
<p>On Sundays, we have dinner together. My mother cooks delicious food.</p>
</div>
<div class="questions">
<h4>Questions:</h4>
<ol>
<li>How many people are in Tom's family?</li>
<li>What does Tom's mother do?</li>
<li>What does Tom's sister like?</li>
</ol>
</div>
</div>
<!-- Text 3 -->
<div class="reading-text">
<h3>A Day at the Park</h3>
<div class="text-content">
<p>Last Saturday, I went to the park with my friends. The weather was nice and sunny. We played football and listened to music.</p>
<p>There was a small café in the park. We bought ice cream and cold water. We sat on the grass and talked for a long time. I took some photos with my phone.</p>
<p>In the evening, we went home. I was tired but very happy. It was a great day!</p>
</div>
<div class="questions">
<h4>Questions:</h4>
<ol>
<li>When did the story happen?</li>
<li>What did they buy at the café?</li>
<li>How did the boy feel in the evening?</li>
</ol>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<p>&copy; 2026 <a href="index.html">English Easy</a>. Made for learning English.</p>
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>