-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathgrammar_errors.html
More file actions
108 lines (103 loc) · 5.54 KB
/
grammar_errors.html
File metadata and controls
108 lines (103 loc) · 5.54 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Các lỗi sai thường gặp trong Writing</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="icon" href="img/favicon.png" type="image/x-icon">
</head>
<body>
<header id="header-placeholder"></header>
<div class="content-pusher">
<div class="container">
<div class="page-intro">
<h1>Các lỗi sai thường gặp trong Writing</h1>
<p>Tổng hợp các lỗi sai cơ bản</p>
</div>
<main class="error-analysis-container">
<section class="error-analysis-card">
<div class="error-list">
<!-- Lỗi 1 -->
<div class="error-item">
<h4>1. Thiếu động từ "to be"</h4>
<p><strong>Sai:</strong> I very happy. / I very excited.<br>
<strong>Đúng:</strong> I <strong>am</strong> very happy. / I <strong>am</strong> very
excited.<br>
<em>(Quy tắc: Chủ ngữ + to be + tính từ)</em>
</p>
</div>
<!-- Lỗi 2 -->
<div class="error-item">
<h4>2. Sai giới từ</h4>
<p><strong>Sai:</strong> people on the world / talk other people / chat my friend<br>
<strong>Đúng:</strong> people <strong>around</strong> the world / talk
<strong>to</strong> other people / chat <strong>with</strong> my friend
</p>
</div>
<!-- Lỗi 3 -->
<div class="error-item">
<h4>3. Dùng sai từ loại</h4>
<p><strong>Sai:</strong> very like / react negative<br>
<strong>Đúng:</strong> <strong>really</strong> like (hoặc like... very much) / react
<strong>negatively</strong><br>
<em>(Quy tắc: Động từ thường đi với trạng từ)</em>
</p>
</div>
<!-- Lỗi 4 -->
<div class="error-item">
<h4>4. Lỗi số ít/số nhiều</h4>
<p><strong>Sai:</strong> many friend / new thing / other react<br>
<strong>Đúng:</strong> many friend<strong>s</strong> / new thing<strong>s</strong> /
other<strong>s</strong> react
</p>
</div>
<!-- Lỗi 5 -->
<div class="error-item">
<h4>5. Thiếu mạo từ (a/an/the)</h4>
<p><strong>Sai:</strong> added to language / under teacher instruction<br>
<strong>Đúng:</strong> added to <strong>the</strong> language / under
<strong>the</strong> teacher’s instruction
</p>
</div>
<!-- Lỗi 6 -->
<div class="error-item">
<h4>6. Sai cấu trúc câu</h4>
<p><strong>Sai:</strong> language can be become confusing / too hard understand<br>
<strong>Đúng:</strong> language can <strong>become</strong> confusing / too hard
<strong>to understand</strong>
</p>
</div>
<!-- Lỗi 7 -->
<div class="error-item">
<h4>7. Sai đại từ tân ngữ</h4>
<p><strong>Sai:</strong> it helps they remember<br>
<strong>Đúng:</strong> it helps <strong>them</strong> remember
</p>
</div>
<!-- Lỗi 8 -->
<div class="error-item">
<h4>8. Sai thì</h4>
<p><strong>Sai:</strong> have been an active member... last year<br>
<strong>Đúng:</strong> <strong>was</strong> an active member... last year (hoặc have
been... <strong>since</strong> last year)
</p>
</div>
<!-- Lỗi 9 -->
<div class="error-item">
<h4>9. Dùng sai từ nối</h4>
<p><strong>Sai:</strong> Beside that / Honest, I very excited<br>
<strong>Đúng:</strong> <strong>Besides</strong> that / <strong>Honestly</strong>, I am
very excited
</p>
</div>
</div>
</section>
</main>
</div>
<footer id="footer-placeholder"></footer>
</div>
<script src="js/main.js"></script>
</body>
</html>