first commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
<footer class="footer mt-auto py-3">
|
||||
<div class="container">
|
||||
<a href="/tools/math0">Basic Addition </a> | <a href="/tools/math1">Addition Level 2</a>| <a href="/tools/simul1">Basic Simultaneous Equations</a>| <a href="/tools/math3">Addition Level 3</a>
|
||||
| <a href="/tools/exp1">Basic Exponentials</a>
|
||||
<br><span class="text-muted">CoreGrade Tools.</span>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,105 @@
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
|
||||
<meta name="generator" content="Jekyll v4.1.1">
|
||||
<title>Sticky Footer Template · Bootstrap</title>
|
||||
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/owl.carousel.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/owl.theme.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/default.css">
|
||||
<link rel="stylesheet" href="/assets/css/typography.css">
|
||||
<link rel="stylesheet" href="/assets/css/style.css">
|
||||
<link rel="stylesheet" href="/assets/css/responsive.css">
|
||||
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="apple-touch-icon" href="/docs/4.5/assets/img/favicons/apple-touch-icon.png" sizes="180x180">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon-32x32.png" sizes="32x32" type="image/png">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon-16x16.png" sizes="16x16" type="image/png">
|
||||
<link rel="manifest" href="/docs/4.5/assets/img/favicons/manifest.json">
|
||||
<link rel="mask-icon" href="/docs/4.5/assets/img/favicons/safari-pinned-tab.svg" color="#563d7c">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon.ico">
|
||||
<meta name="msapplication-config" content="/docs/4.5/assets/img/favicons/browserconfig.xml">
|
||||
<meta name="theme-color" content="#563d7c">
|
||||
|
||||
|
||||
<style>
|
||||
.bd-placeholder-img {
|
||||
font-size: 1.125rem;
|
||||
text-anchor: middle;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.bd-placeholder-img-lg {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="sticky-footer.css" rel="stylesheet">
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<!-- Begin page content -->
|
||||
<main role="main" class="flex-shrink-0">
|
||||
<div class="container">
|
||||
<h4>Simplify the expresions</h4>
|
||||
<?php
|
||||
$p1=['Apple','Banana','Gape'];
|
||||
$p2=['Lemon','Mango','Orange'];
|
||||
$txtL1 = $p1[rand(0,2)];
|
||||
$txtL2 = $p2[rand(0,2)];
|
||||
for ($ii = 0; $ii < 24; $ii++) {
|
||||
|
||||
$xpart = rand(1, 2);
|
||||
$xp = "";
|
||||
for ($i = 0; $i < $xpart; $i++) {
|
||||
$xc = rand(1,4);
|
||||
$xp .= ($xc>1?$xc:'')." ".$txtL1.($xc>1?"s":'').($i< $xpart-1?" + ":'');
|
||||
// $i=$i+$xc;
|
||||
}
|
||||
|
||||
$ypart = rand(1, 2);
|
||||
$yp = "";
|
||||
for ($iy = 0; $iy < $ypart; $iy++) {
|
||||
$yc = rand(1,6);
|
||||
$yp .= " + ". ($yc>1?$yc:'')." ".$txtL2.($yc>1?"s":'');
|
||||
}
|
||||
$question = $xp . $yp;
|
||||
?>
|
||||
|
||||
<h3 class="mt-5"><span style="color:red"><?=$ii+1?></span>: <?= $question ?> = </h3>
|
||||
<hr size="1" style="color:green">
|
||||
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
|
||||
<!-- p class="lead">Pin a footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS.</p>
|
||||
<p>Use <a href="/docs/4.5/examples/sticky-footer-navbar/">the sticky footer with a fixed navbar</a> if need be, too.</p -->
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="footer mt-auto py-3">
|
||||
<div class="container">
|
||||
<span class="text-muted">CoreGrade Tools.</span>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,101 @@
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
|
||||
<meta name="generator" content="Jekyll v4.1.1">
|
||||
<title>Sticky Footer Template · Bootstrap</title>
|
||||
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/owl.carousel.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/owl.theme.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/default.css">
|
||||
<link rel="stylesheet" href="/assets/css/typography.css">
|
||||
<link rel="stylesheet" href="/assets/css/style.css">
|
||||
<link rel="stylesheet" href="/assets/css/responsive.css">
|
||||
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="apple-touch-icon" href="/docs/4.5/assets/img/favicons/apple-touch-icon.png" sizes="180x180">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon-32x32.png" sizes="32x32" type="image/png">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon-16x16.png" sizes="16x16" type="image/png">
|
||||
<link rel="manifest" href="/docs/4.5/assets/img/favicons/manifest.json">
|
||||
<link rel="mask-icon" href="/docs/4.5/assets/img/favicons/safari-pinned-tab.svg" color="#563d7c">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon.ico">
|
||||
<meta name="msapplication-config" content="/docs/4.5/assets/img/favicons/browserconfig.xml">
|
||||
<meta name="theme-color" content="#563d7c">
|
||||
|
||||
|
||||
<style>
|
||||
.bd-placeholder-img {
|
||||
font-size: 1.125rem;
|
||||
text-anchor: middle;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.bd-placeholder-img-lg {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="sticky-footer.css" rel="stylesheet">
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<!-- Begin page content -->
|
||||
<main role="main" class="flex-shrink-0">
|
||||
<div class="container">
|
||||
<h4>Simplify the expresions</h4>
|
||||
<?php
|
||||
for ($ii = 0; $ii < 24; $ii++) {
|
||||
|
||||
$xpart = rand(1, 3);
|
||||
$xp = "";
|
||||
for ($i = 0; $i < $xpart; $i++) {
|
||||
$xc = rand(1,3);
|
||||
$xp .= ($xc>1?$xc:'')."x".($i< $xpart-1?" + ":'');
|
||||
// $i=$i+$xc;
|
||||
}
|
||||
|
||||
$ypart = rand(1, 3);
|
||||
$yp = "";
|
||||
for ($iy = 0; $iy < $ypart; $iy++) {
|
||||
$yc = rand(1,3);
|
||||
$yp .= " + ". ($yc>1?$yc:'')."y";
|
||||
}
|
||||
$question = $xp . $yp;
|
||||
?>
|
||||
|
||||
<h3 class="mt-5"><span style="color:red"><?=$ii+1?></span>: <?= $question ?> = </h3>
|
||||
<hr size="1" style="color:green">
|
||||
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
|
||||
<!-- p class="lead">Pin a footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS.</p>
|
||||
<p>Use <a href="/docs/4.5/examples/sticky-footer-navbar/">the sticky footer with a fixed navbar</a> if need be, too.</p -->
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="footer mt-auto py-3">
|
||||
<div class="container">
|
||||
<span class="text-muted">CoreGrade Tools.</span>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,110 @@
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="Printable Simultaneous equations practice">
|
||||
<meta name="generator" content="Jekyll v4.1.1">
|
||||
<title>CoreGrade Printable Maths Additions</title>
|
||||
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/owl.carousel.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/owl.theme.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/default.css">
|
||||
<link rel="stylesheet" href="/assets/css/typography.css">
|
||||
<link rel="stylesheet" href="/assets/css/style.css">
|
||||
<link rel="stylesheet" href="/assets/css/responsive.css">
|
||||
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- CSS only -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="apple-touch-icon" href="/docs/4.5/assets/img/favicons/apple-touch-icon.png" sizes="180x180">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon-32x32.png" sizes="32x32" type="image/png">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon-16x16.png" sizes="16x16" type="image/png">
|
||||
<link rel="manifest" href="/docs/4.5/assets/img/favicons/manifest.json">
|
||||
<link rel="mask-icon" href="/docs/4.5/assets/img/favicons/safari-pinned-tab.svg" color="#563d7c">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon.ico">
|
||||
<meta name="msapplication-config" content="/docs/4.5/assets/img/favicons/browserconfig.xml">
|
||||
<meta name="theme-color" content="#563d7c">
|
||||
|
||||
|
||||
<style>
|
||||
.bd-placeholder-img {
|
||||
font-size: 1.125rem;
|
||||
text-anchor: middle;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.bd-placeholder-img-lg {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="sticky-footer.css" rel="stylesheet">
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<!-- Begin page content -->
|
||||
<main role="main" class="flex-shrink-0">
|
||||
<div class="container">
|
||||
<h1>Exponentials Simplification </h1>
|
||||
<hr size="1">
|
||||
|
||||
<?php
|
||||
$la1 = array("x","a","p","r","q","s","y","z","n","m","u","f");
|
||||
|
||||
for ($ii = 0; $ii < 50; $ii++) {
|
||||
$numV = rand(2,3);
|
||||
|
||||
$var_list= array();
|
||||
|
||||
for ($i=0; $i<$numV; $i++){
|
||||
$var_list[$i] = $la1[rand(0,(count($la1)-1))];
|
||||
}
|
||||
|
||||
$numQ = rand(4,8);
|
||||
|
||||
$quest_list= array();
|
||||
$quest ="";
|
||||
for ($i=0; $i<$numQ; $i++){
|
||||
$quest_list[$i] = $var_list[rand(0,(count($var_list)-1))];
|
||||
$quest .=$quest_list[$i].".";
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<table class="table table-hover" style="width:350px;">
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><?=$ii+1?></td>
|
||||
<td>
|
||||
<h2><?=$quest?> = </h2>
|
||||
</td>
|
||||
|
||||
<td> </td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
|
||||
|
||||
@@ -0,0 +1,157 @@
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="Printable Simultaneous equations practice">
|
||||
<meta name="generator" content="Jekyll v4.1.1">
|
||||
<title>CoreGrade Printable Maths Additions</title>
|
||||
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/owl.carousel.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/owl.theme.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/default.css">
|
||||
<link rel="stylesheet" href="/assets/css/typography.css">
|
||||
<link rel="stylesheet" href="/assets/css/style.css">
|
||||
<link rel="stylesheet" href="/assets/css/responsive.css">
|
||||
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- CSS only -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="apple-touch-icon" href="/docs/4.5/assets/img/favicons/apple-touch-icon.png" sizes="180x180">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon-32x32.png" sizes="32x32" type="image/png">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon-16x16.png" sizes="16x16" type="image/png">
|
||||
<link rel="manifest" href="/docs/4.5/assets/img/favicons/manifest.json">
|
||||
<link rel="mask-icon" href="/docs/4.5/assets/img/favicons/safari-pinned-tab.svg" color="#563d7c">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon.ico">
|
||||
<meta name="msapplication-config" content="/docs/4.5/assets/img/favicons/browserconfig.xml">
|
||||
<meta name="theme-color" content="#563d7c">
|
||||
|
||||
|
||||
<style>
|
||||
.bd-placeholder-img {
|
||||
font-size: 1.125rem;
|
||||
text-anchor: middle;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.bd-placeholder-img-lg {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="sticky-footer.css" rel="stylesheet">
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<!-- Begin page content -->
|
||||
<main role="main" class="flex-shrink-0">
|
||||
<div class="container">
|
||||
<h1>Basic Addition Exercises </h1>
|
||||
<hr size="1">
|
||||
<?php
|
||||
for ($ii = 0; $ii < 25; $ii++) {
|
||||
?>
|
||||
<div class="row">
|
||||
<div class="col-sm">
|
||||
<table class="table table-hover" style="width:150px;">
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row"></th>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th scope="row">+</th>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr style="border: 1px solid black;height:40px;">
|
||||
<th scope="col" style="border: 1px solid black;"></th>
|
||||
<th scope="col" style="border: 1px solid black;"></th>
|
||||
<th scope="col" style="border: 1px solid black;"></th>
|
||||
<th scope="col" style="border: 1px solid black;"></th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</div>
|
||||
<div class="col-sm">
|
||||
<table class="table table-hover" style="width:150px;">
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
|
||||
<td><?=rand(1,99)?> + <?=rand(1,99)?> = </td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<td><?=rand(1,99)?> + <?=rand(1,99)?> = </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><?=rand(1,99)?> + <?=rand(1,99)?> = </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
</table>
|
||||
</div>
|
||||
<div class="col-sm">
|
||||
<table class="table table-hover" style="width:150px;">
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row"></th>
|
||||
<td><?=rand(1,5)?></td>
|
||||
<td><?=rand(1,5)?></td>
|
||||
<td><?=rand(1,5)?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"></th>
|
||||
<td><?=rand(1,6)?></td>
|
||||
<td><?=rand(1,6)?></td>
|
||||
<td><?=rand(1,6)?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">+</th>
|
||||
<td><?=rand(1,4)?></td>
|
||||
<td><?=rand(1,4)?></td>
|
||||
<td><?=rand(1,4)?></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr style="border: 1px solid black;height:40px;">
|
||||
<th scope="col" style="border: 1px solid black;"></th>
|
||||
<th scope="col" style="border: 1px solid black;"></th>
|
||||
<th scope="col" style="border: 1px solid black;"></th>
|
||||
<th scope="col" style="border: 1px solid black;"></th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
|
||||
|
||||
@@ -0,0 +1,176 @@
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="Printable Simultaneous equations practice">
|
||||
<meta name="generator" content="Jekyll v4.1.1">
|
||||
<title>CoreGrade Printable Maths Additions</title>
|
||||
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/owl.carousel.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/owl.theme.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/default.css">
|
||||
<link rel="stylesheet" href="/assets/css/typography.css">
|
||||
<link rel="stylesheet" href="/assets/css/style.css">
|
||||
<link rel="stylesheet" href="/assets/css/responsive.css">
|
||||
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- CSS only -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="apple-touch-icon" href="/docs/4.5/assets/img/favicons/apple-touch-icon.png" sizes="180x180">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon-32x32.png" sizes="32x32" type="image/png">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon-16x16.png" sizes="16x16" type="image/png">
|
||||
<link rel="manifest" href="/docs/4.5/assets/img/favicons/manifest.json">
|
||||
<link rel="mask-icon" href="/docs/4.5/assets/img/favicons/safari-pinned-tab.svg" color="#563d7c">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon.ico">
|
||||
<meta name="msapplication-config" content="/docs/4.5/assets/img/favicons/browserconfig.xml">
|
||||
<meta name="theme-color" content="#563d7c">
|
||||
|
||||
|
||||
<style>
|
||||
.bd-placeholder-img {
|
||||
font-size: 1.125rem;
|
||||
text-anchor: middle;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.bd-placeholder-img-lg {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="sticky-footer.css" rel="stylesheet">
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<!-- Begin page content -->
|
||||
<main role="main" class="flex-shrink-0">
|
||||
<div class="container">
|
||||
<h1>Addition Exercises </h1>
|
||||
<hr size="1">
|
||||
<?php
|
||||
for ($ii = 0; $ii < 25; $ii++) {
|
||||
?>
|
||||
<div class="row">
|
||||
<div class="col-sm">
|
||||
<table class="table table-hover" style="width:200px;">
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row"></th>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"></th>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">+</th>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th scope="col" style="height:60px;"></th>
|
||||
<th scope="col"></th>
|
||||
<th scope="col"></th>
|
||||
<th scope="col"></th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</div>
|
||||
<div class="col-sm">
|
||||
<table class="table table-hover" style="width:200px;">
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row"></th>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"></th>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">+</th>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th scope="col" style="height:60px;"></th>
|
||||
<th scope="col"></th>
|
||||
<th scope="col"></th>
|
||||
<th scope="col"></th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</div>
|
||||
<div class="col-sm">
|
||||
<table class="table table-hover" style="width:200px;">
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row"></th>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"></th>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">+</th>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
<td><?=rand(1,9)?></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th scope="col" style="height:60px;"></th>
|
||||
<th scope="col"></th>
|
||||
<th scope="col"></th>
|
||||
<th scope="col"></th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
|
||||
|
||||
@@ -0,0 +1,118 @@
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="Printable Simultaneous equations practice">
|
||||
<meta name="generator" content="Jekyll v4.1.1">
|
||||
<title>CoreGrade Printable Maths Additions</title>
|
||||
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/owl.carousel.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/owl.theme.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/default.css">
|
||||
<link rel="stylesheet" href="/assets/css/typography.css">
|
||||
<link rel="stylesheet" href="/assets/css/style.css">
|
||||
<link rel="stylesheet" href="/assets/css/responsive.css">
|
||||
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- CSS only -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="apple-touch-icon" href="/docs/4.5/assets/img/favicons/apple-touch-icon.png" sizes="180x180">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon-32x32.png" sizes="32x32" type="image/png">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon-16x16.png" sizes="16x16" type="image/png">
|
||||
<link rel="manifest" href="/docs/4.5/assets/img/favicons/manifest.json">
|
||||
<link rel="mask-icon" href="/docs/4.5/assets/img/favicons/safari-pinned-tab.svg" color="#563d7c">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon.ico">
|
||||
<meta name="msapplication-config" content="/docs/4.5/assets/img/favicons/browserconfig.xml">
|
||||
<meta name="theme-color" content="#563d7c">
|
||||
|
||||
|
||||
<style>
|
||||
.bd-placeholder-img {
|
||||
font-size: 1.125rem;
|
||||
text-anchor: middle;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.bd-placeholder-img-lg {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="sticky-footer.css" rel="stylesheet">
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<!-- Begin page content -->
|
||||
<main role="main" class="flex-shrink-0">
|
||||
<div class="container">
|
||||
<h1>Maths(+/-) Simplification </h1>
|
||||
<hr size="1">
|
||||
|
||||
<?php
|
||||
$la1 = array("x","a","p","r","q","s","y","z","n","m","u","f");
|
||||
|
||||
for ($ii = 0; $ii < 50; $ii++) {
|
||||
$numV = rand(2,3);
|
||||
|
||||
$var_list= array();
|
||||
|
||||
for ($i=0; $i<$numV; $i++){
|
||||
$var_list[$i] = $la1[rand(0,(count($la1)-1))];
|
||||
}
|
||||
|
||||
$numQ = rand(4,8);
|
||||
$sign_arr = array("+","-");
|
||||
|
||||
$quest_list= array();
|
||||
$quest ="";
|
||||
for ($i=0; $i<$numQ; $i++){
|
||||
$quest_list[$i] = $var_list[rand(0,(count($var_list)-1))];
|
||||
$sgn = $sign_arr[rand(0,1)];
|
||||
if ( $i==0 && $sgn=="+")
|
||||
{ $sgn="";
|
||||
}
|
||||
$que = rand(1,5);
|
||||
if ($que == 1 ){$que="";}
|
||||
|
||||
$quest .=$sgn.$que.$quest_list[$i];
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<table class="table table-hover" style="width:550px;">
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><?=$ii+1?></td>
|
||||
<td>
|
||||
<h2><?=$quest?> = </h2>
|
||||
</td>
|
||||
|
||||
<td> </td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
|
||||
|
||||
@@ -0,0 +1,88 @@
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
|
||||
<meta name="generator" content="Jekyll v4.1.1">
|
||||
<title>Sticky Footer Template · Bootstrap</title>
|
||||
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/owl.carousel.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/owl.theme.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/default.css">
|
||||
<link rel="stylesheet" href="/assets/css/typography.css">
|
||||
<link rel="stylesheet" href="/assets/css/style.css">
|
||||
<link rel="stylesheet" href="/assets/css/responsive.css">
|
||||
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="apple-touch-icon" href="/docs/4.5/assets/img/favicons/apple-touch-icon.png" sizes="180x180">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon-32x32.png" sizes="32x32" type="image/png">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon-16x16.png" sizes="16x16" type="image/png">
|
||||
<link rel="manifest" href="/docs/4.5/assets/img/favicons/manifest.json">
|
||||
<link rel="mask-icon" href="/docs/4.5/assets/img/favicons/safari-pinned-tab.svg" color="#563d7c">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon.ico">
|
||||
<meta name="msapplication-config" content="/docs/4.5/assets/img/favicons/browserconfig.xml">
|
||||
<meta name="theme-color" content="#563d7c">
|
||||
|
||||
|
||||
<style>
|
||||
.bd-placeholder-img {
|
||||
font-size: 1.125rem;
|
||||
text-anchor: middle;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.bd-placeholder-img-lg {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="sticky-footer.css" rel="stylesheet">
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<!-- Begin page content -->
|
||||
<main role="main" class="flex-shrink-0">
|
||||
<div class="container">
|
||||
<?php
|
||||
for ($ii = 0; $ii < 50; $ii++) {
|
||||
|
||||
|
||||
$sign_array = array("+","-");
|
||||
$letter_array = array("x","y","p","r","q","s");
|
||||
$letr = $letter_array[rand(0,5)];
|
||||
$question ="(".$letr." ".$sign_array[rand(0,1)]." ".rand(1,12).") (".$letr." ".$sign_array[rand(0,1)]." ".rand(1,12).")";
|
||||
|
||||
?>
|
||||
<h2 class="mt-2"><?=$ii+1?>: <?= $question ?> = </h2>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
|
||||
<!-- p class="lead">Pin a footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS.</p>
|
||||
<p>Use <a href="/docs/4.5/examples/sticky-footer-navbar/">the sticky footer with a fixed navbar</a> if need be, too.</p -->
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="footer mt-auto py-3">
|
||||
<div class="container">
|
||||
<span class="text-muted">CoreGrade Tools.</span>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,105 @@
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="Printable Simultaneous equations practice">
|
||||
<meta name="generator" content="Jekyll v4.1.1">
|
||||
<title>CoreGrade Printable Simultaneous equations practice</title>
|
||||
|
||||
<link rel="stylesheet" href="/assets/css/animate.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/owl.carousel.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/owl.theme.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="/assets/css/default.css">
|
||||
<link rel="stylesheet" href="/assets/css/typography.css">
|
||||
<link rel="stylesheet" href="/assets/css/style.css">
|
||||
<link rel="stylesheet" href="/assets/css/responsive.css">
|
||||
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="/docs/4.5/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="apple-touch-icon" href="/docs/4.5/assets/img/favicons/apple-touch-icon.png" sizes="180x180">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon-32x32.png" sizes="32x32" type="image/png">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon-16x16.png" sizes="16x16" type="image/png">
|
||||
<link rel="manifest" href="/docs/4.5/assets/img/favicons/manifest.json">
|
||||
<link rel="mask-icon" href="/docs/4.5/assets/img/favicons/safari-pinned-tab.svg" color="#563d7c">
|
||||
<link rel="icon" href="/docs/4.5/assets/img/favicons/favicon.ico">
|
||||
<meta name="msapplication-config" content="/docs/4.5/assets/img/favicons/browserconfig.xml">
|
||||
<meta name="theme-color" content="#563d7c">
|
||||
|
||||
|
||||
<style>
|
||||
.bd-placeholder-img {
|
||||
font-size: 1.125rem;
|
||||
text-anchor: middle;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.bd-placeholder-img-lg {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="sticky-footer.css" rel="stylesheet">
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<!-- Begin page content -->
|
||||
<main role="main" class="flex-shrink-0">
|
||||
<div class="container">
|
||||
<?php
|
||||
for ($ii = 0; $ii < 50; $ii++) {
|
||||
|
||||
$la1 = array("x","a","p","r","q","s"); // your choice for variale name
|
||||
$la2 = array("y","z","n","m","u","f"); // your choice for variale name different from list la1
|
||||
|
||||
$let1 = $la1[rand(0,5)]; // pick a variale name to use
|
||||
$let2 = $la2[rand(0,5)]; // pick a variale name to use
|
||||
|
||||
$ans1 = rand(1,9); // generate the solution 1
|
||||
$ans2 = rand(2,11); // generate the solution 2
|
||||
if ($ans2 == $ans1) $ans2 = rand(2,11); // regenrate it
|
||||
|
||||
$c1 = rand(1,6);
|
||||
$c2 = rand(1,6);
|
||||
$c3 = rand(1,6); if ($c3 == $c1) $c3 = rand(2,11); // regenrate it
|
||||
$c4 = rand(1,6); if ($c4 == $c2) $c4 = rand(2,11); // regenrate it
|
||||
|
||||
$mopt = array(1,-1);
|
||||
$mp1 =$mopt[rand(0,1)];
|
||||
$mp2 =$mopt[rand(0,1)];
|
||||
|
||||
$tot1 = $c1*$ans1 + $mp1*$c2*$ans2;
|
||||
$tot2 = $c3*$ans1 + $mp2*$c4*$ans2;
|
||||
|
||||
$question1 = " $c1$let1" .( $mp1>0?"+":"-"). "$c2$let2 = $tot1 ";
|
||||
$question2 = " $c3$let1" .( $mp2>0?"+":"-"). "$c4$let2 = $tot2 ";
|
||||
$question3 = " What is $let1 and $let2 ? $ans1,$ans2";
|
||||
?>
|
||||
|
||||
<h1 class="mt-5"><?= $question1 ?><br><?= $question2 ?><br><?= $question3 ?></h1>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<!-- p class="lead">Pin a footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS.</p>
|
||||
<p>Use <a href="/docs/4.5/examples/sticky-footer-navbar/">the sticky footer with a fixed navbar</a> if need be, too.</p -->
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="footer mt-auto py-3">
|
||||
<div class="container">
|
||||
<span class="text-muted">CoreGrade Tools.</span>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user