-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (76 loc) · 3.24 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
84
85
86
87
88
89
90
91
<!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>simple.scss</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<nav>
<ul>
<img src="https://github.com/deovaliandro.png" loading="lazy">
<li><a href="/">main</a></li>
<li><a href="/about">about</a></li>
<li><a href="/project">project</a></li>
</ul>
</nav>
<article>
<h1>Ini Adalah Judul Pertama</h1>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Fugiat
laborum impedit cumque odio ipsa sit consectetur nisi sed libero
consequuntur? Sapiente nemo fugit voluptatum asperiores consequatur
earum vitae omnis provident!</p>
<p><a href="http://google.com">googleeeeeee</a></p>
<button class="button">I'm a button</button>
<h3>Variasi tulisan</h3>
<p><b>Bold text</b></p>
<p><i>Italic text</i></p>
<p><u>Underlined text</u></p>
<p><mark>Highlighted text</mark></p>
<p><code>Inline code</code></p>
<p><kbd>Alt+F4</kbd></p>
<h3>List</h3>
<h4>Bulleted list</h4>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<h4>Numbered list</h4>
<ol>
<li>Do this thing</li>
<li>Do that thing</li>
<li>Do the other thing</li>
</ol>
<h3>Blockquotes</h3>
<blockquote>
<p>Friends don't spy; true friendship is about privacy, too.</p>
<p><cite>Stephen King</cite></p>
</blockquote>
<h3>Code</h3>
<pre>print("Hello world!")</pre>
<div class="listingblock">
<div class="content">
<pre class="rouge highlight"><code data-lang="python"><span class="nf">print</span><span class="p">(</span><span class="sh">"</span><span class="s">Meoworld!</span><span class="sh">"</span><span class="p">)</span></code></pre>
</div>
</div>
<details>
<summary>Spoiler alert!</summary>
<p>You smell. 🙂</p>
</details>
<h3>Image</h3>
<img src="https://dummyimage.com/16:9x1080/" alt="" srcset="">
<hr>
<footer>
<a target="_blank" href="https://creativecommons.org/licenses/by-nc-sa/4.0/">
CC BY-NC-SA 4.0</a>, Est. 2016 © Deo Valiandro. M,
<span id="love">🌱</span> with <span id="love">❤️</span>
from whatever, Earth.
</footer>
</article>
</main>
</body>
</html>