-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (76 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Alit - A minimal starter stylesheet for blog.</title>
<meta name="description" content="A stylesheet that provides basic and beautiful styles for a simple webpage." />
<link rel="stylesheet" href="/alit.css" />
</head>
<body>
<h1>Alit</h1>
<h2>A minimal starter stylesheet for blog.</h2>
<hr />
<div>
<h3>
What is this?
</h3>
<p>
This? It's a stylesheet that provides basic and beautiful styles for a
simple blogs. Unlike the vast majority of popular CSS libraries (<i>*ahem* Bootstrap</i>), <code>this</code>
doesn't depend on a class-based system and mess up
your HTML.
</p>
<p>You can visit the source code <a href="https://github.com/Indra2108/damar.css">here</a>.</p>
</div>
<h2>
Image with caption
</h2>
<figure>
<img src="https://media.giphy.com/media/NUUXkbeiAyb7O/giphy.gif" />
<figcaption>Anywhere</figcaption>
</figure>
<h2>Code Sample</h2>
<pre><code>
// js
function example (name) {
console.log(name)
}
</code></pre>
<h2>
Tabular representation of this year's stonks
</h2>
<table>
<tr>
<th>Product</th>
<th>Outcome</th>
</tr>
<tr>
<td>Donuts that last forever</td>
<td>Stonks</td>
</tr>
<tr>
<td>Donuts that can cook itself instantly so that the donut never ends</td>
<td>who came up with this idea</td>
</tr>
<tr>
<td>Trash that can take itself out</td>
<td>Approved</td>
</tr>
<tr>
<td>Find your life long soulmate with the click of a button</td>
<td>uh...what?</td>
</tr>
<tr>
<td>whenever you ctrl+c and ctrl+v, a random part of your search history is posted on twitter</td>
<td>whenever you ctrl+c and ctrl+v, a random part of your search history is posted on twitter</td>
</tr>
<tr>
<td><code>is this cool?</code></td>
<td>
<pre><code>apparently not.</code></pre>
</td>
</tr>
</table>
</body>
</html>