-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (54 loc) · 1023 Bytes
/
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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>talkingtab</title>
<style>
.left {
flex: 1 4;
}
.center {
flex: 3 1;
flex-basis: 50%;
}
.right {
flex: 1 1;
}
.mainbody {
font: 11px/1.8 Verdana,Bitstream Vera Sans,sans-serif;
color: #111;
word-wrap: break-word;
position: relative;
margin: 7em auto;
max-width: 1000px;
}
.maincontainer {
display: flex;
max-width: 800px;
}
body {
padding: 2em 0 0 0;
width: auto;
color: #111;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
#rvb.red {
color: red;
}
#rvb.blue {
color: blue;
}
</style>
<script src="index.js"></script>
</head>
<body>
<div class="maincontainer">
<div class="left"></div>
<div class="center">
<div id="rvb" class="blue">Hello RVB</div>
<button onclick="clearall()" id="item7">Click here</button>
</div>
<div class="right"></div>
</div>
</body>
</html>