-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (75 loc) · 2.49 KB
/
index.html
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
<!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>Markdown Tutorials</title>
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/learn.css">
</head>
<body style="padding:2em;">
<center>
<h1><span style="color: blue;">Markdown (.mk)</span> Tutorials</h1>
</center>
<h2>Headings</h2>
<p>Headings in .mk are like h1,h2 tags of html, here # means h1, ## means h2, ### means h3 and so on e.g. </p><br>
<div class="input"># Its h1 tag</div>
<div class="output">
<h1>Its h1 tag</h1>
</div>
<br>
<div class="input">## Its h2 tag</div>
<div class="output">
<h2>Its h2 tag</h2>
</div>
<br>
<div class="input"># Its h3 tag</div>
<div class="output">
<h3>Its h3 tag</h3>
</div>
<br>
<div class="input">#### Its h4 tag</div>
<div class="output">
<h4>Its h4 tag</h4>
</div>
<br>
<div class="input">##### Its h5 tag</div>
<div class="output">
<h5>Its h5 tag</h5>
</div>
<br>
<div class="input">###### Its h4 tag</div>
<div class="output">
<h6>Its h6 tag</h6>
</div>
<hr>
<br>
<h2>Bold</h2>
<p>To make Text Bold put the text between **. e.g.</p><br>
<div class="input">**i would something just like this**</div>
<div class="output"><b>i would something just like this</b></div>
<br>
<h2>Italic</h2>
<p>To make content italis, put tex between <b>_</b>. e.g.-</p>
<div class="input">_its italic text_</div>
<div class="output"><i>its italic text</i></div>
<br>
<h2>Line</h2>
<p>to make like like we make with hr tag, we use ---</p>
<div class="input">--- </div>
<div class="output">
<hr style="width: 100vh;">
</div>
<br>
<h2>Link</h2>
<p>to give links in .md files we use [content](url) instade of a href = ''</p>
<div class="input">[google](https://www.google.com)</div>
<div class="output"><a href="https://www.google.com">google</a></div>
<h2>Image</h2>
<p>To insert image in .md files we use ![alter text](img link) insted of img src</p>
<div class="input">![alter text if image do not load](https://www.gstatic.com/webp/gallery3/1.png)</div>
<div class="output"><img src="https://www.gstatic.com/webp/gallery3/1.png" alt="alter text if image do not load">
</div>
</body>
</html>