-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (48 loc) · 2.38 KB
/
index.html
File metadata and controls
50 lines (48 loc) · 2.38 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
<link rel="stylesheet" href="style.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
</head>
<!-- Always shows a header, even in smaller screens. -->
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header" id="navbar">
<div class="mdl-layout__header-row">
<!-- Title -->
<span class="mdl-layout-title">Y2DHS Math Webapp</span>
<!-- Add spacer, to align navigation to the right -->
<div class="mdl-layout-spacer"></div>
<!-- Navigation. We hide it in small screens. -->
<nav class="mdl-navigation mdl-layout--large-screen-only">
<a class="mdl-navigation__link" href="index.html">Home</a>
<a class="mdl-navigation__link" href="summary.html">Summary</a>
<a class="mdl-navigation__link" href="multiplication.html">Multiplication Frame</a>
</nav>
</div>
</header>
<div class="mdl-layout__drawer mdl-layout--small-screen-only">
<span class="mdl-layout-title">Y2DHS Math Webapp</span>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="index.html">Home</a>
<a class="mdl-navigation__link" href="summary.html">Summary</a>
<a class="mdl-navigation__link" href="multiplication.html">Multiplication Frame</a>
</nav>
</div>
<main class="mdl-layout__content">
<div class="page-content">
<div id="title">
<h1 class="mdl-layout--large-screen-only" id="header">Factorisation of quadratic expressions</h1>
<h3 class="mdl-layout--small-screen-only" id="small-header">Factoriation of quadratic expressions</h3>
</div>
<div id="content">
<h2 class="subtitle">How does this app work?</h2><br>
<p class="main-content">The page will generate some shapes for you to arrange which will help you in your understanding of factorsing of quadratic equations. From the expression, ax<sup>2</sup> + bx + c, input the values of a, b and c in the form. You will be able to visualise the concepts of quadratic factorisation through the arrangement of blocks.</p>
</div>
</div>
</main>
</div>
</html>