-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
44 lines (34 loc) · 835 Bytes
/
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
<! DOCTYPE html>
<html>
<head>
<link href="styles/output.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div class="container m-4">
<div>
<h2 class="text-xl mb-4">Lists</h2>
<ul class="cp-bullet-list">
<li></li>
</ul>
</div>
<div>
<h2 class="text-xl mb-4 mt-8">Text block</h2>
<p class="cp-paragraph"></p>
</div>
<div>
<h2 class="text-xl mb-4 mt-8">Titles</h2>
<h1 class="cp-title-1 text-4xl mb-4"></h1>
<h2 class="cp-title-2 text-2xl mb-4"></h2>
<h3 class="cp-title-3 text-lg"></h3>
</div>
<div>
<h2 class="text-xl mb-4 mt-8">Images</h2>
<div class="cp-image"></div>
</div>
<div>
<h2 class="text-xl mb-4 mt-8">Cards</h2>
<div class="cp-card"></div>
</div>
</div>
</body>
</html>