-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 919 Bytes
/
index.html
File metadata and controls
35 lines (32 loc) · 919 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pure CSS Example</title>
<link rel="stylesheet" href="./purecss/settings.css">
</head>
<body>
<div class="container center nobox">
<h1>Pure CSS</h1>
</div>
<div class="toolbar">
<a href="./"><h1>Home</h1></a>
<a href="https://github.com/Spiffily/pureexample"><p>GitHub</p></a>
<a href="./tutorials.html"><p>Tutorials</p></a>
<a href="./resources.html"><p>Resources</p></a>
<a href="./about.html"><p>About</p></a>
</div>
<div class="container center nobox">
<p>This is what you get with pure css. Ultra fast, flexible and simple.</p>
</div>
<div class="container center">
<h2>Whatever you want, it's possible.</h2>
<div class="container row">
<b>Soft or Hard</b>
<b>Light or Dark</b>
<b>Flat or Round</b>
</div>
<i>Whatever it is, it can be done</i>
</div>
</body>
</html>