-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·34 lines (27 loc) · 1.32 KB
/
index.php
File metadata and controls
executable file
·34 lines (27 loc) · 1.32 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
<?php require "inc_header.php"; ?>
<div class="container mt-5">
<div class="row">
<div class="col-md-4">
<div class="card" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title">What are irregular verbs?</h5>
<p class="card-text">Irregular verbs are verbs that don’t take on the regular –d, -ed, or -ied spelling patterns of the past simple (V2) or past participle (V3). Many of the irregular V2 and V3 forms are the same, such as: cut – cut, had – had, let – let, hurt – hurt, fed- fed, sold-sold.</p>
<a href="Irregular.php" class="btn btn-primary">Irregular Verbs List</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title">What is a verb?</h5>
<p class="card-text">
A verb is one of the main parts of a sentence or question in English.
In fact, you can’t have a sentence or a question without a verb! That’s how important these “action” parts of speech are.
The verb signals an action, an occurrence, or a state of being. Whether mental, physical, or mechanical, verbs always express activity.
</p>
</div>
</div>
</div>
</div>
</div>
<?php require "inc_footer.php"; ?>