-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (49 loc) · 1.44 KB
/
index.html
File metadata and controls
53 lines (49 loc) · 1.44 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="bulma.css">
<link rel="stylesheet" href="bulma-extra.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<section class="section">
<div class="container">
<h1>github pages?</h1><p>
[link - does markdown work?](two.html) Nope!</p>
<p>
<a href="two.html">a real link</a></p>
</div>
</section>
<section class="section">
<div class="columns">
<div class="column has-text-white has-background-info">
First column
</div>
<div class="column has-text-white has-background-link">
Second column
</div>
<div class="column has-text-white has-background-success">
Third column
</div>
<div class="column has-text-white has-background-primary">
Fourth column
</div>
</section>
<section class="section">
<div class="columns">
<div class="column ">
<p class="has-text-white has-background-info bd-notification">First column</p>
</div>
<div class="column ">
<p class="has-text-white has-background-link bd-notification ">Second column</p>
</div>
<div class="column ">
<p class="has-text-white has-background-success bd-notification"> Third column</p>
</div>
<div class="column ">
<p class="has-text-white has-background-primary bd-notification"> Fourth column</p>
</div>
</section>
</div>
</body>
</html>