-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (61 loc) · 2.08 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<html>
<head>
<script src="jquery/jquery-1.9.0.js"></script>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="custom.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.results-div{ color:white; }
.object{ display:inline-block; text-align:center; padding:0 5px; margin:10px 3px;}
.chord, .word{ display:block; }
.chord{text-transform: capitalize;}
.section{ /* border-top:1px solid red; border-bottom:1px solid red; */ padding:5px 0px; margin:5px 0px;}
</style>
</head>
<body>
<div class="container" style="margin-top:20px">
<div class="page-header">
<h2>Custom Markdown Test </h2>
</div>
<div class="row"><!-- begin main -->
<div class="col-md-6" style="background-color:#eeeeee"><!-- text area -->
<div class="row">
<div class="col-md-12">
<div class="row">
<textarea rows="20" class="form-control inputmd"></textarea>
</div>
<div class="row">
<button type="button" class="btn btn-success convert">Go!</button>
</div>
</div>
</div>
</div>
<div class="col-md-6" style="background-color:#999999"><!-- rendered -->
<div class="row">
<div class="col-md-12">
<div class="results-div">
<!--
<div class="section">
<div class="object">
<div class="chord">A</div>
<div class="word">Hello</div>
</div>
<div class="object">
<div class="chord">C</div>
<div class="word">World</div>
</div>
<div class="object">
<div class="chord">E</div>
<div class="word"> </div>
</div>
-->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>