-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
36 lines (36 loc) · 1.56 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Simple.css</title>
<link rel="stylesheet" href="simple.css">
</head>
<body>
<div class="jumbotron">
<div align="center">
<img src="logo.png" alt="logo">
</div>
<p>A simple css framework.</p>
</div>
<h2 class="headerCentered">Simple.css is a simple CSS framework
designed to be easy to use and edit. Try it out yourself!</h2>
<div align="center">
<table>
<tr>
<td><a href="https://github.com/cpdevelops/simple.css" target="_blank"><button type="button" name="button" class="button success">Github</button></a></td>
<td><a href="#"><button type="button" name="button" class="button warning">Download</button></a></td>
<td><a href="#"><button type="button" name="button" class="button danger">Hosted File</button></a></td>
</tr>
</table>
<h3 class="headerCentered">What items does simple.css have?</h3>
</div>
<h4>Button Classes</h4>
<button type="button" name="button" class="button">Default</button>
<button type="button" name="button" class="button info">Info</button>
<button type="button" name="button" class="button success">Success</button>
<button type="button" name="button" class="button warning">Warning</button>
<button type="button" name="button" class="button danger">Danger</button>
<button type="button" name="button" class="button">Medium (Default)</button>
<button type="button" name="button" class="button large">Large Button</button>
</body>
</html>