-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (42 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Type.js</title>
<script src="main.js" type="module"></script>
<style>
h1,h2,h3,h4,h5,h6 {
line-height: 50%;
padding: 0;
margin: 0;
}
article {
white-space: pre-wrap;
max-width: 50vw;
}
article img {
max-width: 300px;
}
</style>
</head>
<body>
<article>
# Büyük Başlık
## Alt Başlık
### daha alt başlık
Hello ***world***!
This is a **markdown** document parsed to html.
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Non, id, aperiam vero accusantium quisquam explicabo sapiente earum excepturi nostrum omnis, incidunt ipsum error possimus ea saepe. Odit ex fuga sapiente?
Fooo
==========
naber
Fooo
----------
naber
[](https://google.com "lorem ipsum")
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Non, id, aperiam vero accusantium quisquam explicabo sapiente earum excepturi nostrum omnis, incidunt ipsum error possimus ea saepe. Odit ex fuga sapiente?
Debitis non veniam ipsa incidunt quod iste perferendis soluta! Ex quis et eius nihil voluptate dolor quos sint, labore esse magnam ducimus. Nam porro dolorum modi eligendi magnam accusantium sapiente?
</article>
</body>
</html>