-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (57 loc) · 1.37 KB
/
index.html
File metadata and controls
58 lines (57 loc) · 1.37 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
54
55
56
57
58
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Startup Generator</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<style>
body {
text-align: center;
}
header {
border-bottom: 1px dashed #ddd;
}
section {
color:#666;
margin-bottom: 4em;
text-align: center;
}
section h1 {
margin: 2em 0;
}
section span {
color:#222;
border-bottom: 1px dotted #666;
}
footer {
border-top: 1px dashed #ddd;
color:#999;
font-size:.9em;
padding-top: 2em;
}
</style>
</head>
<body>
<div class="container">
<header class="row">
<div class="col-md-12">
<h3>Startup Generator</h3>
</div>
</header>
<section class="row">
<div class="col-md-12">
<h1><span id="site"></span> for <span id="group"></span>!</h1>
<button id="go" class="btn btn-lg btn-primary">Generate</button>
</div>
</section>
<footer class="row">
<div class="col-md-12">
<p>Created by <a href="http://jcornelius.com">J Cornelius</a> for <a href="http://sugtw.com/">SUGTW</a>. Have something to add? <a href="https://github.com/jcornelius/startup-generator/">Go for it</a>.</p>
</div>
</footer>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>