mirror of
https://github.com/atapas/html-tips-tricks.git
synced 2024-11-16 16:58:27 +01:00
added maths equation
This commit is contained in:
parent
c062388fce
commit
1d8fdc964e
2 changed files with 33 additions and 0 deletions
27
maths/index.html
Normal file
27
maths/index.html
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>
|
||||||
|
|
||||||
|
<!-- This code will insert a fraction 'a/b' to your page: -->
|
||||||
|
|
||||||
|
<math>
|
||||||
|
|
||||||
|
<mfrac>
|
||||||
|
|
||||||
|
<mi>a</mi>
|
||||||
|
|
||||||
|
<mi>b</mi>
|
||||||
|
|
||||||
|
</mfrac>
|
||||||
|
|
||||||
|
</math>
|
||||||
|
</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
6
maths/readme.md
Normal file
6
maths/readme.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Insert math equations -->
|
||||||
|
|
||||||
|
<!-- Inserting math equations (using the MathML language) is super simple in HTML5 and later. Put all your equations between the tags <math> and </math>. -->
|
||||||
|
|
Loading…
Reference in a new issue