-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (39 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Markdown to HTML</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1> MARKDOWN</h1>
<h2>Short Story</h2>
<p>Widely used to make readme files or even on online forums,
it's simple to understand ans works pretty well.
Easy to use, it has been used since 2004 and
is well supported in numerous websites around the WWW.
</p><br>
<h2>Overview and requirements</h2>
<ol>
<li>Overview</li>
<p> Markdown can be transcprited into HTML and has the same results for text editing but again,
it's heckin' simple to write readme files into `.md` than into `.html`.</p><br>
<li>Requirements</li>
<p>As every coding language you need a computer (big brain time here) and a IDE that can support `.md` files but don't worry
on it as most of them do as they are really convenient for readme files.
Here is a nice IDE to download in the links provided below.
</p><br>
</ol>
<h2>Useful Links</h2>
<p><ul>
<li><a href="https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet">GitHub Intel</a></li>
<li><a href="https://en.wikipedia.org/wiki/Markdown">Wikipedia page</a></li>
<li><a href="https://code.visualstudio.com/">VS code</a></li>
<li><a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">Cheatlist</a></li>
</ul></p>
<br>
<img src="https://becode.org/app/uploads/2020/03/bc_mailsign_seal.png"
alt="Logo BeCode"
width= "80px" >
</body>
</html>