html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!-- Created by Daniel Cooper-->
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div align="center" id="Cont">
<button id="Back">Back</button>
<button id="Next">Next</button>
</div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Created by Daniel Cooper */
#Cont button {
border:none;
padding:7px;
background-color: green;
}
#Back {
float:left;
min-height:20px;
}
#Next {
float:right;
min-height:20px;
}
#Cont {
border:2px solid black;
min-height:30px;
padding:1px;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
// Created by Daniel Cooper
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run